Skip to content

Commit

Permalink
Update dependencies for Python > 3.11 support (#53)
Browse files Browse the repository at this point in the history
* Update requirements.txt

Upgrade soundfile
Upgrade numba

* Update github tests for 3.8 -> 3.11
  • Loading branch information
mcosti authored Dec 31, 2023
1 parent b19a443 commit 1e4ab12
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ imageio==2.23.0
iniconfig==2.0.0
joblib==1.2.0
kiwisolver==1.4.4
librosa==0.9.2
llvmlite==0.39.1
librosa==0.10.1
llvmlite==0.41.1
matplotlib==3.6.2
networkx==3.0
noisereduce==2.0.1
numba==0.56.4
numpy==1.23.5
numba==0.58.1
numpy==1.26.2
packaging==23.0
Pillow==9.4.0
pluggy==1.0.0
pooch==1.6.0
pycparser==2.21
pydub==0.25.1
pyparsing==3.0.9
pyparsing==3.1.1
pytest==7.2.0
pytest-xdist==3.1.0
python-dateutil==2.8.2
PyWavelets==1.4.1
requests==2.28.1
resampy==0.4.2
scikit-image==0.19.3
scikit-learn==1.2.0
scipy==1.10.0
scikit-learn==1.3.2
scipy==1.11.4
six==1.16.0
soundfile==0.11.0
soundfile==0.12.1
threadpoolctl==3.1.0
tifffile==2022.10.10
tomli==2.0.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# docker build -f tests_dockerfiles/Dockerfile-3-8 .
FROM python:3.8
FROM python:3.11

RUN apt-get update && apt-get install ffmpeg -y

Expand Down

0 comments on commit 1e4ab12

Please sign in to comment.