We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6830645 + 74e03d7 commit 27b8f89Copy full SHA for 27b8f89
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.12
+FROM python:3.13
2
3
WORKDIR /usr/src/app
4
@@ -24,6 +24,10 @@ RUN pip install pipenv
24
COPY Pipfile* ./
25
RUN pipenv install
26
27
+# Workaround for https://github.com/beetbox/audioread/issues/144 to enable running on python 3.13
28
+RUN pipenv install -e "git+https://github.com/youknowone/python-deadlib.git#egg=standard-aifc&subdirectory=aifc"
29
+RUN pipenv install -e "git+https://github.com/youknowone/python-deadlib.git#egg=standard-sunau&subdirectory=sunau"
30
+
31
COPY test_tracks ./test_tracks
32
COPY src/* ./
33
0 commit comments