Skip to content

Commit

Permalink
Merge pull request #74 from spotify/rabitt/0.2.4
Browse files Browse the repository at this point in the history
Bump version: 0.2.3 → 0.2.4
  • Loading branch information
dohertyguirand authored Apr 7, 2023
2 parents 7c8481d + 8436f5e commit f913021
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 38 deletions.
2 changes: 1 addition & 1 deletion basic_pitch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import pathlib

__author__ = "Spotify"
__version__ = "0.2.3"
__version__ = "0.2.4"
__email__ = "[email protected]"
__demowebsite__ = "https://basicpitch.io"
__description__ = "Basic Pitch, a lightweight yet powerful audio-to-MIDI converter with pitch bend detection."
Expand Down
75 changes: 38 additions & 37 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.3
current_version = 0.2.4
commit = True
tag = True

Expand All @@ -13,54 +13,55 @@ author_email = [email protected]
maintainer = Spotify
maintainer_email = [email protected]
url = https://github.com/spotify/basic-pitch
keywords =
keywords =
license = Apache 2.0
classifiers =
Development Status :: 5 - Production/Stable
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
classifiers =
Development Status :: 5 - Production/Stable
Natural Language :: English
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython

[options]
zip_safe = False
packages = find:
include_package_data = True
install_requires =
librosa>=0.8.0
mir_eval>=0.6
numpy<1.24,>=1.18
pretty_midi>=0.2.9
resampy>=0.2.2
scipy>=1.4.1
tensorflow>=2.4.1,<2.12; platform_machine != 'arm64'
tensorflow-macos>=2.4.1,<2.12; platform_machine == 'arm64'
typing_extensions
install_requires =
librosa>=0.8.0
mir_eval>=0.6
numpy<1.24,>=1.18
pretty_midi>=0.2.9
resampy>=0.2.2
scipy>=1.4.1
tensorflow>=2.4.1,<2.12; platform_machine != 'arm64'
tensorflow-macos>=2.4.1,<2.12; platform_machine == 'arm64'
typing_extensions

[options.entry_points]
console_scripts =
basic-pitch = basic_pitch.predict:main
console_scripts =
basic-pitch = basic_pitch.predict:main

[options.extras_require]
test =
coverage>=5.0.2
pytest>=6.1.1
pytest-mock
docs =
mkdocs>=1.0.4
dev =
basic_pitch[test,docs]
bump2version>=1.0.1
mypy
tox
test =
coverage>=5.0.2
pytest>=6.1.1
pytest-mock
docs =
mkdocs>=1.0.4
dev =
basic_pitch[test,docs]
bump2version>=1.0.1
mypy
tox

[bumpversion:file:basic_pitch/__init__.py]

[bdist_wheel]
universal = 1

0 comments on commit f913021

Please sign in to comment.