Skip to content

Commit daf508d

Browse files
committed
patch the stretch dependency for python 3.12
1 parent 425f4e8 commit daf508d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/dockerhub-extra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
docker rmi -f baxtree/subaligner:${{ env.SUBALIGNER_TAG }}.u24
6060
6161
- name: Build and push the Ubuntu 24 image
62-
id: docker_build_latest
62+
id: docker_build_u24
6363
uses: docker/build-push-action@v4
6464
with:
6565
context: ./docker

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ dependencies = [
9696
[project.optional-dependencies]
9797
harmony = [
9898
"aeneas~=1.7.3.0; python_version < '3.12'",
99+
"aeneas @ git+https://github.com/baxtree/aeneas.git@master#egg=aeneas ; python_version >= '3.12'",
99100
"dtw-python~=1.5.3",
100101
"sentencepiece~=0.1.95",
101102
"torch<2.3.0",
@@ -105,6 +106,7 @@ harmony = [
105106
]
106107
dev = [
107108
"aeneas~=1.7.3.0; python_version < '3.12'",
109+
"aeneas @ git+https://github.com/baxtree/aeneas.git@master#egg=aeneas ; python_version >= '3.12'",
108110
"dtw-python~=1.5.3",
109111
"sentencepiece~=0.1.95",
110112
"torch<2.3.0",
@@ -137,6 +139,7 @@ docs = [
137139
]
138140
stretch = [
139141
"aeneas~=1.7.3.0; python_version < '3.12'",
142+
"aeneas @ git+https://github.com/baxtree/aeneas.git@master#egg=aeneas ; python_version >= '3.12'",
140143
"dtw-python~=1.5.3"
141144
]
142145
llm = [

0 commit comments

Comments
 (0)