Skip to content

Commit

Permalink
Testing update for 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
benfmiller committed Dec 31, 2023
1 parent fc8e786 commit 865a4cd
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 9 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
2 changes: 2 additions & 0 deletions tests_dockerfiles/Dockerfile-3-10
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ RUN apt-get update && apt-get install ffmpeg -y

WORKDIR /tests_dir/

RUN pip install --upgrade pip

COPY requirements.txt /tests_dir

RUN pip install -r requirements.txt
Expand Down
20 changes: 20 additions & 0 deletions tests_dockerfiles/Dockerfile-3-11
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# docker build -f tests_dockerfiles/Dockerfile-3-11 .
FROM python:3.11

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

WORKDIR /tests_dir/

RUN pip install --upgrade pip

COPY requirements.txt /tests_dir

RUN pip install -r requirements.txt
# RUN pip install noisereduce numpy pytest scipy pydub pytest-xdist scikit-image

COPY audalign /tests_dir/audalign
COPY test_audio /tests_dir/test_audio
COPY tests /tests_dir/tests
COPY pytest.ini /tests_dir

RUN pytest
20 changes: 20 additions & 0 deletions tests_dockerfiles/Dockerfile-3-12
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# docker build -f tests_dockerfiles/Dockerfile-3-12 .
FROM python:3.12

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

WORKDIR /tests_dir/

RUN pip install --upgrade pip

COPY requirements.txt /tests_dir

RUN pip install -r requirements.txt
# RUN pip install noisereduce numpy pytest scipy pydub pytest-xdist scikit-image

COPY audalign /tests_dir/audalign
COPY test_audio /tests_dir/test_audio
COPY tests /tests_dir/tests
COPY pytest.ini /tests_dir

RUN pytest
2 changes: 2 additions & 0 deletions tests_dockerfiles/Dockerfile-3-8
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ RUN apt-get update && apt-get install ffmpeg -y

WORKDIR /tests_dir/

RUN pip install --upgrade pip

COPY requirements.txt /tests_dir

RUN pip install -r requirements.txt
Expand Down
2 changes: 2 additions & 0 deletions tests_dockerfiles/Dockerfile-3-9
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ RUN apt-get update && apt-get install ffmpeg -y

WORKDIR /tests_dir/

RUN pip install --upgrade pip

COPY requirements.txt /tests_dir

RUN pip install -r requirements.txt
Expand Down

0 comments on commit 865a4cd

Please sign in to comment.