-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from vocalpy/raise-min-python-3.8-for-crowset…
…ta-3.4.x Require python >= 3.8 for crowsetta 3.4.x
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,11 @@ description = "A tool to work with any format for annotating vocalizations" | |
authors = [ | ||
{name = "David Nicholson", email = "[email protected]"} | ||
] | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"attrs >=19.3.0", | ||
"evfuncs >=0.3.2", | ||
"birdsong-recognition-dataset >=0.3.0", | ||
"evfuncs >=0.3.5", | ||
"birdsong-recognition-dataset >=0.3.2", | ||
"numpy >=1.18.1", | ||
"pandas >= 1.3.5", | ||
"scipy >=1.4.1", | ||
|
@@ -26,9 +26,9 @@ classifiers = [ | |
'Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'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', | ||
] | ||
|
||
|