Skip to content

Commit

Permalink
Bumped version to 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbaca committed Feb 1, 2022
1 parent 8235fac commit cc0f393
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion abjadext/rmakers/_version.py
Original file line number Diff line number Diff line change
@@ -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 []
)
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,20 @@ 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",
],
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",
Expand Down

0 comments on commit cc0f393

Please sign in to comment.