Skip to content

Commit f913021

Browse files
Merge pull request #74 from spotify/rabitt/0.2.4
Bump version: 0.2.3 → 0.2.4
2 parents 7c8481d + 8436f5e commit f913021

File tree

2 files changed

+39
-38
lines changed

2 files changed

+39
-38
lines changed

basic_pitch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import pathlib
1919

2020
__author__ = "Spotify"
21-
__version__ = "0.2.3"
21+
__version__ = "0.2.4"
2222
__email__ = "basic-pitch@spotify.com"
2323
__demowebsite__ = "https://basicpitch.io"
2424
__description__ = "Basic Pitch, a lightweight yet powerful audio-to-MIDI converter with pitch bend detection."

setup.cfg

Lines changed: 38 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.3
2+
current_version = 0.2.4
33
commit = True
44
tag = True
55

@@ -13,54 +13,55 @@ author_email = basic-pitch@spotify.com
1313
maintainer = Spotify
1414
maintainer_email = basic-pitch@spotify.com
1515
url = https://github.com/spotify/basic-pitch
16-
keywords =
16+
keywords =
1717
license = Apache 2.0
18-
classifiers =
19-
Development Status :: 5 - Production/Stable
20-
Natural Language :: English
21-
Operating System :: POSIX :: Linux
22-
Operating System :: MacOS :: MacOS X
23-
Operating System :: Microsoft :: Windows
24-
Programming Language :: Python
25-
Programming Language :: Python :: 3.7
26-
Programming Language :: Python :: 3.8
27-
Programming Language :: Python :: 3.9
28-
Programming Language :: Python :: 3.10
29-
Programming Language :: Python :: Implementation :: CPython
18+
classifiers =
19+
Development Status :: 5 - Production/Stable
20+
Natural Language :: English
21+
Operating System :: POSIX :: Linux
22+
Operating System :: MacOS :: MacOS X
23+
Operating System :: Microsoft :: Windows
24+
Programming Language :: Python
25+
Programming Language :: Python :: 3.7
26+
Programming Language :: Python :: 3.8
27+
Programming Language :: Python :: 3.9
28+
Programming Language :: Python :: 3.10
29+
Programming Language :: Python :: Implementation :: CPython
3030

3131
[options]
3232
zip_safe = False
3333
packages = find:
3434
include_package_data = True
35-
install_requires =
36-
librosa>=0.8.0
37-
mir_eval>=0.6
38-
numpy<1.24,>=1.18
39-
pretty_midi>=0.2.9
40-
resampy>=0.2.2
41-
scipy>=1.4.1
42-
tensorflow>=2.4.1,<2.12; platform_machine != 'arm64'
43-
tensorflow-macos>=2.4.1,<2.12; platform_machine == 'arm64'
44-
typing_extensions
35+
install_requires =
36+
librosa>=0.8.0
37+
mir_eval>=0.6
38+
numpy<1.24,>=1.18
39+
pretty_midi>=0.2.9
40+
resampy>=0.2.2
41+
scipy>=1.4.1
42+
tensorflow>=2.4.1,<2.12; platform_machine != 'arm64'
43+
tensorflow-macos>=2.4.1,<2.12; platform_machine == 'arm64'
44+
typing_extensions
4545

4646
[options.entry_points]
47-
console_scripts =
48-
basic-pitch = basic_pitch.predict:main
47+
console_scripts =
48+
basic-pitch = basic_pitch.predict:main
4949

5050
[options.extras_require]
51-
test =
52-
coverage>=5.0.2
53-
pytest>=6.1.1
54-
pytest-mock
55-
docs =
56-
mkdocs>=1.0.4
57-
dev =
58-
basic_pitch[test,docs]
59-
bump2version>=1.0.1
60-
mypy
61-
tox
51+
test =
52+
coverage>=5.0.2
53+
pytest>=6.1.1
54+
pytest-mock
55+
docs =
56+
mkdocs>=1.0.4
57+
dev =
58+
basic_pitch[test,docs]
59+
bump2version>=1.0.1
60+
mypy
61+
tox
6262

6363
[bumpversion:file:basic_pitch/__init__.py]
6464

6565
[bdist_wheel]
6666
universal = 1
67+

0 commit comments

Comments
 (0)