Skip to content

Commit

Permalink
Bumped to Abjad 3.10. (#1463)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbaca committed Jun 2, 2022
1 parent b9f5f90 commit 99c34cc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Abjad 3.9
=========
Abjad 3.10
==========

Abjad helps composers build up complex pieces of music notation in iterative and
incremental ways. Use Abjad to create a symbolic representation of all the notes, rests,
Expand Down Expand Up @@ -42,7 +42,7 @@ Make sure LilyPond is callable from the commandline:
.. code-block::
$ lilypond --version
GNU LilyPond 2.23.8
GNU LilyPond 2.23.9
Copyright (c) 1996--2022 by
Han-Wen Nienhuys <hanwen@xs4all.nl>
Expand Down
2 changes: 1 addition & 1 deletion abjad/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version_info__ = (3, 9)
__version_info__ = (3, 10)
__version__ = ".".join(str(_) for _ in __version_info__[:2])
__version__ += "".join(__version_info__[2:])
10 changes: 5 additions & 5 deletions docs/source/_mothballed/instruments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ Use ``middle_c_sounding_pitch`` to get an instrument's level of transposition:
>>> note = abjad.Note(violin.middle_c_sounding_pitch, 4)
>>> abjad.show(note)

Getting an instrument's allowable clefs
---------------------------------------
Getting an instrument's clefs
-----------------------------

Use ``allowable_clefs`` to get clefs on which an instrument is conventionally notated:
Use ``clefs`` to get clefs on which an instrument is conventionally notated:

::

>>> violin.allowable_clefs
>>> violin.clefs

Customizing instrument properties
---------------------------------
Expand All @@ -107,7 +107,7 @@ You can change the properties of any instrument at initialization:
::

>>> viola = abjad.Viola(
... allowable_clefs=("alto", "treble"),
... clefs=("alto", "treble"),
... pitch_range=abjad.PitchRange("[C3, C6]"),
... )

Expand Down
2 changes: 1 addition & 1 deletion docs/source/_mothballed/score-fragment-strings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ We define more functions:
... abjad.attach(metronome_mark, leaf)
... time_signature = abjad.TimeSignature((6, 4))
... abjad.attach(time_signature, leaf)
... instrument = abjad.Instrument(pitch_range="[C4, C6]")
... instrument = abjad.Instrument(pitch_range=abjad.PitchRange("[C4, C6]"))
... abjad.attach(instrument, leaf)
... string = r'\markup "Campana (La)"'
... string = rf'\set Staff.instrumentName = {string}'
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# navigation_depth=1 makes sidebar completely flat;
# leave flat navigation in place forever:
"navigation_depth": 1,
"style_nav_header_background": "#336699",
"style_nav_header_background": "#4488cc",
}
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
project = "Abjad"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
]

extras_require = {
"nauert": ["abjad-ext-nauert>=3.9"],
"rmakers": ["abjad-ext-rmakers>=3.9"],
"nauert": ["abjad-ext-nauert>=3.10"],
"rmakers": ["abjad-ext-rmakers>=3.10"],
}

keywords = [
Expand All @@ -74,7 +74,7 @@
"black>=22.1.0",
"flake8>=4.0.1",
"isort>=5.10.1",
"mypy>=0.940",
"mypy>=0.960",
"ply>=3.11",
"pytest>=6.2.5",
"pytest-cov>=3.0.0",
Expand Down

0 comments on commit 99c34cc

Please sign in to comment.