Skip to content

Commit

Permalink
Merge pull request #168 from vocalpy/require-python-3.8
Browse files Browse the repository at this point in the history
Require python >= 3.8
  • Loading branch information
NickleDave committed May 14, 2022
2 parents 2b5046b + ece4c2b commit 307b668
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ description = "A tool to work with any format for annotating vocalizations"
authors = [
{name = "David Nicholson", email = "nickledave@users.noreply.github.com"}
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"attrs >=19.3.0",
"evfuncs >=0.3.4",
"birdsong-recognition-dataset >=0.3.0",
"evfuncs >=0.3.5",
"birdsong-recognition-dataset >=0.3.2",
"numpy >=1.18.1",
"pandas >= 1.3.5",
"pandera >= 0.9.0",
Expand All @@ -27,9 +27,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',
]

Expand Down

0 comments on commit 307b668

Please sign in to comment.