Skip to content

Commit 27b8f89

Browse files
authored
Merge pull request #49 from lucas42/dependabot/docker/python-3.13
Bump python from 3.12 to 3.13
2 parents 6830645 + 74e03d7 commit 27b8f89

File tree

2 files changed

+123
-104
lines changed

2 files changed

+123
-104
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12
1+
FROM python:3.13
22

33
WORKDIR /usr/src/app
44

@@ -24,6 +24,10 @@ RUN pip install pipenv
2424
COPY Pipfile* ./
2525
RUN pipenv install
2626

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+
2731
COPY test_tracks ./test_tracks
2832
COPY src/* ./
2933

0 commit comments

Comments
 (0)