Skip to content

Commit b990d71

Browse files
authored
DEV: Drop support for older dependency versions, fix #298 (#300)
* WIP: Drop support for dependencies as per SPEC 0 * Change TEST_PTYHONS in noxfile.py: 3.12-3.14 * Change python-version in workflows/ci.yml: 3.12-3.14
1 parent 749cbbb commit b990d71

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [3.11, 3.12, 3.13]
15+
python-version: [3.12, 3.13, 3.14]
1616
os: [ubuntu-latest, macos-latest, windows-latest]
1717
runs-on: ${{ matrix.os }}
1818
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414

1515
TEST_PYTHONS = [
16-
"3.11",
1716
"3.12",
1817
"3.13",
18+
"3.14",
1919
]
2020

2121

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ description = "A Python tool to work with any format for annotating animal sound
88
authors = [
99
{name = "David Nicholson", email = "nickledave@users.noreply.github.com"}
1010
]
11-
requires-python = ">=3.11"
11+
requires-python = ">=3.12"
1212
dependencies = [
1313
"appdirs >=1.4.4",
1414
"attrs >=25.3.0",
15-
"numpy >=1.26.0",
16-
"pandas >= 2.1.0",
15+
"numpy >=2.0.0",
16+
"pandas >= 2.2.0",
1717
"pandera >= 0.25.0",
1818
"scipy >=1.12.0",
1919
"SoundFile >=0.13.1",
@@ -39,7 +39,7 @@ test = [
3939
"pytest-xdist >=3.2.0",
4040
]
4141
doc = [
42-
"ipython != 8.7.0",
42+
"ipython >= 8.20.0",
4343
"jupyterlab >=3.0.3",
4444
"jupytext >=1.13.8",
4545
"librosa >=0.9.1",

0 commit comments

Comments
 (0)