From c20e2560a9c052a6ca7c6f87f93971d2677388f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trevor=20Ba=C4=8Da?= Date: Tue, 1 Nov 2022 16:01:44 -0400 Subject: [PATCH] Bumped Abjad to 3.14. (#1501) --- README.rst | 19 +++---------------- abjad/_version.py | 2 +- docs/source/conf.py | 2 +- setup.py | 16 ++++++++-------- 4 files changed, 13 insertions(+), 26 deletions(-) diff --git a/README.rst b/README.rst index 2a60a800453..c0ad8247033 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -Abjad 3.13 +Abjad 3.14 ========== Abjad helps composers build up complex pieces of music notation in iterative and @@ -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. @@ -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 - Jan Nieuwenhuizen - 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 @@ -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) diff --git a/abjad/_version.py b/abjad/_version.py index 0572c2c1c52..71d3af6b560 100644 --- a/abjad/_version.py +++ b/abjad/_version.py @@ -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:]) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0ea519073b5..bf411547ea7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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" diff --git a/setup.py b/setup.py index 4654a9bad31..c579d468b5c 100644 --- a/setup.py +++ b/setup.py @@ -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", ], } @@ -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__":