From cc0f3933894155949573fc37d5a8db47e364bfdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Trevor=20Ba=C4=8Da?= Date: Tue, 1 Feb 2022 21:19:37 +0100 Subject: [PATCH] Bumped version to 3.5 --- abjadext/rmakers/_version.py | 2 +- setup.py | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/abjadext/rmakers/_version.py b/abjadext/rmakers/_version.py index 10aba9a..9ba65d0 100644 --- a/abjadext/rmakers/_version.py +++ b/abjadext/rmakers/_version.py @@ -1,4 +1,4 @@ -__version_info__ = (3, 4) +__version_info__ = (3, 5) __version__ = ".".join(str(x) for x in __version_info__[:3]) + "".join( __version_info__[3:] or [] ) diff --git a/setup.py b/setup.py index 3cd04ea..68ba32b 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,6 @@ def read_version(): classifiers=[ "Development Status :: 3 - Alpha", "License :: OSI Approved :: GNU General Public License (GPL)", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Artistic Software", @@ -33,13 +32,13 @@ def read_version(): description=description, include_package_data=True, install_requires=[ - "abjad==3.4", - "black>=20.8b1", + "abjad==3.5", + "black", "flake8", "isort", - "mypy>=0.770", - "pytest>=5.4.2", - "pytest-cov>=2.6.0", + "mypy", + "pytest", + "pytest-cov", "pytest-helpers-namespace", ], license="MIT",