abjad-ext-rmakers
Advanced tools
| Metadata-Version: 2.1 | ||
| Name: abjad-ext-rmakers | ||
| Version: 3.17 | ||
| Version: 3.18 | ||
| Summary: Rhythm-makers extend Abjad with tools for rhythmic construction. | ||
@@ -5,0 +5,0 @@ Home-page: http://abjad.github.io |
@@ -1,1 +0,1 @@ | ||
| abjad>=3.17 | ||
| abjad>=3.18 |
@@ -8,2 +8,3 @@ """ | ||
| after_grace_container, | ||
| attach_time_signatures, | ||
| beam, | ||
@@ -68,2 +69,3 @@ beam_groups, | ||
| "after_grace_container", | ||
| "attach_time_signatures", | ||
| "beam", | ||
@@ -70,0 +72,0 @@ "beam_groups", |
@@ -1,4 +0,4 @@ | ||
| __version_info__ = (3, 17) | ||
| __version_info__ = (3, 18) | ||
| __version__ = ".".join(str(x) for x in __version_info__[:3]) + "".join( | ||
| __version_info__[3:] or [] | ||
| ) |
@@ -148,7 +148,6 @@ """ | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.beam(container) | ||
| ... rmakers.extract_trivial(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file_ = rmakers.example(components, time_signatures) | ||
| ... lilypond_file_ = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file_["Voice"] | ||
| ... rmakers.beam(voice) | ||
| ... rmakers.extract_trivial(voice) | ||
| ... return lilypond_file_ | ||
@@ -165,3 +164,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -193,3 +192,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -209,7 +208,6 @@ .. container:: example | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.beam(container) | ||
| ... rmakers.extract_trivial(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file_ = rmakers.example(components, time_signatures) | ||
| ... lilypond_file_ = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file_["Voice"] | ||
| ... rmakers.beam(voice) | ||
| ... rmakers.extract_trivial(voice) | ||
| ... return lilypond_file_ | ||
@@ -227,3 +225,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -255,3 +253,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -273,7 +271,6 @@ .. container:: example | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.beam(container) | ||
| ... rmakers.extract_trivial(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file_ = rmakers.example(components, time_signatures) | ||
| ... lilypond_file_ = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file_["Voice"] | ||
| ... rmakers.beam(voice) | ||
| ... rmakers.extract_trivial(voice) | ||
| ... return lilypond_file_ | ||
@@ -291,3 +288,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -324,3 +321,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -342,7 +339,6 @@ .. container:: example | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.beam(container) | ||
| ... rmakers.extract_trivial(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file_ = rmakers.example(components, time_signatures) | ||
| ... lilypond_file_ = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file_["Voice"] | ||
| ... rmakers.beam(voice) | ||
| ... rmakers.extract_trivial(voice) | ||
| ... return lilypond_file_ | ||
@@ -360,3 +356,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -391,3 +387,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -424,3 +420,3 @@ .. container:: example | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -455,3 +451,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -488,3 +484,3 @@ .. container:: example | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -519,3 +515,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -531,9 +527,10 @@ .. container:: example | ||
| ... durations, [1, 1, 1, 1, 4, 4], 16, | ||
| ... spelling=rmakers.Spelling(forbidden_note_duration=abjad.Duration(1, 4)), | ||
| ... spelling=rmakers.Spelling( | ||
| ... forbidden_note_duration=abjad.Duration(1, 4) | ||
| ... ), | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.beam(container) | ||
| ... rmakers.extract_trivial(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file = rmakers.example(components, time_signatures) | ||
| ... lilypond_file = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file["Voice"] | ||
| ... rmakers.beam(voice) | ||
| ... rmakers.extract_trivial(voice) | ||
| ... return lilypond_file | ||
@@ -551,3 +548,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -588,3 +585,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -591,0 +588,0 @@ Rewrites forbidden durations with smaller durations tied together. |
@@ -24,7 +24,6 @@ r""" | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.duration_bracket(container) | ||
| ... rmakers.feather_beam(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file_ = rmakers.example(components, time_signatures) | ||
| ... lilypond_file_ = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file_["Voice"] | ||
| ... rmakers.duration_bracket(voice) | ||
| ... rmakers.feather_beam(voice) | ||
| ... return lilypond_file_, state | ||
@@ -42,3 +41,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -98,3 +97,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -116,3 +115,3 @@ >>> state | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -174,3 +173,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -192,3 +191,3 @@ >>> state | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -248,3 +247,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -268,7 +267,6 @@ >>> state | ||
| ... ) | ||
| ... container = abjad.Container(tuplets) | ||
| ... rmakers.beam(container) | ||
| ... rmakers.extract_trivial(container) | ||
| ... components = abjad.mutate.eject_contents(container) | ||
| ... lilypond_file_ = rmakers.example(components, time_signatures) | ||
| ... lilypond_file_ = rmakers.example(tuplets, time_signatures) | ||
| ... voice = lilypond_file_["Voice"] | ||
| ... rmakers.beam(voice) | ||
| ... rmakers.extract_trivial(voice) | ||
| ... return lilypond_file_, state | ||
@@ -286,3 +284,3 @@ | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -328,3 +326,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -346,3 +344,3 @@ >>> state | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -385,3 +383,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -426,3 +424,3 @@ >>> state | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -463,3 +461,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -490,3 +488,3 @@ >>> for item in state.items(): | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -529,3 +527,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -556,3 +554,3 @@ >>> for item in state.items(): | ||
| \context Score = "Score" | ||
| << | ||
| { | ||
| \context RhythmicStaff = "Staff" | ||
@@ -598,3 +596,3 @@ \with | ||
| } | ||
| >> | ||
| } | ||
@@ -601,0 +599,0 @@ >>> for item in state.items(): |
+1
-1
| Metadata-Version: 2.1 | ||
| Name: abjad-ext-rmakers | ||
| Version: 3.17 | ||
| Version: 3.18 | ||
| Summary: Rhythm-makers extend Abjad with tools for rhythmic construction. | ||
@@ -5,0 +5,0 @@ Home-page: http://abjad.github.io |
+1
-1
@@ -35,3 +35,3 @@ #! /usr/bin/env python | ||
| install_requires=[ | ||
| "abjad>=3.17", | ||
| "abjad>=3.18", | ||
| ], | ||
@@ -38,0 +38,0 @@ license="MIT", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
544229
-1.13%14292
-0.23%