Skip to content

Commit

Permalink
Bumped Abjad to 3.14. (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbaca committed Nov 1, 2022
1 parent 4a3c0f5 commit c20e256
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 26 deletions.
19 changes: 3 additions & 16 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Abjad 3.13
Abjad 3.14
==========

Abjad helps composers build up complex pieces of music notation in iterative and
Expand Down Expand Up @@ -31,7 +31,7 @@ Abjad requires Python 3.10 or later:
.. code-block::
~$ python --version
Python 3.10.5
Python 3.11.0
Abjad requires LilyPond 2.23.6 or later.

Expand All @@ -42,17 +42,7 @@ Make sure LilyPond is callable from the commandline:
.. code-block::
$ lilypond --version
GNU LilyPond 2.23.13
Copyright (c) 1996--2022 by
Han-Wen Nienhuys <hanwen@xs4all.nl>
Jan Nieuwenhuizen <janneke@gnu.org>
and others.
This program is free software. It is covered by the GNU General Public
License and you are welcome to change it and/or distribute copies of it
under certain conditions. Invoke as `lilypond --warranty' for more
information.
GNU LilyPond 2.23.80 (running Guile 2.2)
Create a Python 3 virtual environment for Abjad: https://docs.python.org/3/tutorial/venv.html

Expand All @@ -67,9 +57,6 @@ Start Python, import Abjad, start making music notation:
.. code-block::
~$ python
Python 3.10.5 (v3.10.5:f377153967, Jun 6 2022, 12:36:10)
[Clang 13.0.0 (clang-1300.0.29.30)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import abjad
>>> note = abjad.Note("c'4")
>>> abjad.show(note)
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, 13)
__version_info__ = (3, 14)
__version__ = ".".join(str(_) for _ in __version_info__[:2])
__version__ += "".join(__version_info__[2:])
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": "#77ee55",
"style_nav_header_background": "#880088",
}
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
project = "Abjad"
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ def check_python_version(abjad_version):
]

extras_require = {
"nauert": ["abjad-ext-nauert>=3.13"],
"rmakers": ["abjad-ext-rmakers>=3.13"],
"nauert": ["abjad-ext-nauert>=3.14"],
"rmakers": ["abjad-ext-rmakers>=3.14"],
"dev": [
"black>=22.8.0",
"black>=22.10.0",
"flake8>=5.0.4",
"isort>=5.10.1",
"mypy>=0.971",
"pytest>=7.1.3",
"pytest-cov>=3.0.0",
"mypy>=0.982",
"pytest>=7.2.0",
"pytest-cov>=4.0.0",
"pytest-helpers-namespace>=2021.12.29",
"sphinx-autodoc-typehints>=1.19.2",
"sphinx-autodoc-typehints>=1.19.4",
"sphinx-rtd-theme>=1.0.0",
],
}
Expand All @@ -75,7 +75,7 @@ def check_python_version(abjad_version):
install_requires = [
"ply>=3.11",
"roman>=1.4",
"uqbar>=0.6.3",
"uqbar>=0.6.4",
]

if __name__ == "__main__":
Expand Down

0 comments on commit c20e256

Please sign in to comment.