Upload from GitHub Actions: Use Python 3.12 in all environments (uv, Docker, CI) and upgrade packages
Browse files- .github/workflows/huggingface-upload.yml +1 -1
- .github/workflows/nightly-evals.yml +1 -1
- .python-version +1 -1
- pyproject.toml +19 -19
- uv.lock +0 -0
.github/workflows/huggingface-upload.yml
CHANGED
@@ -13,7 +13,7 @@ jobs:
|
|
13 |
- name: Set up Python
|
14 |
uses: actions/setup-python@v4
|
15 |
with:
|
16 |
-
python-version: '3.
|
17 |
|
18 |
- name: Install dependencies
|
19 |
run: |
|
|
|
13 |
- name: Set up Python
|
14 |
uses: actions/setup-python@v4
|
15 |
with:
|
16 |
+
python-version: '3.12'
|
17 |
|
18 |
- name: Install dependencies
|
19 |
run: |
|
.github/workflows/nightly-evals.yml
CHANGED
@@ -14,7 +14,7 @@ jobs:
|
|
14 |
- name: Set up Python
|
15 |
uses: actions/setup-python@v4
|
16 |
with:
|
17 |
-
python-version: '3.
|
18 |
|
19 |
- name: Install dependencies
|
20 |
run: |
|
|
|
14 |
- name: Set up Python
|
15 |
uses: actions/setup-python@v4
|
16 |
with:
|
17 |
+
python-version: '3.12'
|
18 |
|
19 |
- name: Install dependencies
|
20 |
run: |
|
.python-version
CHANGED
@@ -1 +1 @@
|
|
1 |
-
3.
|
|
|
1 |
+
3.12
|
pyproject.toml
CHANGED
@@ -3,35 +3,35 @@ name = "languagebench"
|
|
3 |
version = "0.1.0"
|
4 |
description = "Add your description here"
|
5 |
readme = "README.md"
|
6 |
-
requires-python = ">=3.
|
7 |
dependencies = [
|
8 |
-
"fastapi>=0.115.
|
9 |
-
"
|
10 |
-
"pandas>=2.2.3",
|
11 |
-
"numpy>=2.1.2",
|
12 |
-
"joblib>=1.4.2",
|
13 |
"language-data>=1.3.0",
|
|
|
|
|
|
|
14 |
]
|
15 |
|
16 |
[project.optional-dependencies]
|
17 |
dev = [
|
18 |
-
"aiolimiter>=1.1
|
19 |
"bert-score>=0.3.13",
|
20 |
-
"datasets>=3.0
|
21 |
-
"elevenlabs>=1.
|
22 |
-
"evaluate
|
23 |
-
"huggingface-hub>=0.
|
24 |
"jiwer>=3.1.0",
|
25 |
-
"joblib>=1.
|
26 |
"langcodes>=3.5.0",
|
27 |
"language-data>=1.3.0",
|
28 |
-
"openai>=1.
|
29 |
-
"protobuf>=
|
30 |
-
"python-dotenv>=1.0
|
31 |
"rich>=14.0.0",
|
32 |
-
"sacrebleu>=2.
|
33 |
"sentencepiece>=0.2.0",
|
34 |
-
"tiktoken>=0.
|
35 |
-
"tqdm>=4.
|
36 |
-
"transformers>=4.
|
37 |
]
|
|
|
3 |
version = "0.1.0"
|
4 |
description = "Add your description here"
|
5 |
readme = "README.md"
|
6 |
+
requires-python = ">=3.12"
|
7 |
dependencies = [
|
8 |
+
"fastapi>=0.115.12",
|
9 |
+
"joblib>=1.5.0",
|
|
|
|
|
|
|
10 |
"language-data>=1.3.0",
|
11 |
+
"numpy>=2.2.5",
|
12 |
+
"pandas>=2.2.3",
|
13 |
+
"uvicorn>=0.34.2",
|
14 |
]
|
15 |
|
16 |
[project.optional-dependencies]
|
17 |
dev = [
|
18 |
+
"aiolimiter>=1.2.1",
|
19 |
"bert-score>=0.3.13",
|
20 |
+
"datasets>=3.6.0",
|
21 |
+
"elevenlabs>=1.58.1",
|
22 |
+
"evaluate>=0.4.3",
|
23 |
+
"huggingface-hub>=0.31.1",
|
24 |
"jiwer>=3.1.0",
|
25 |
+
"joblib>=1.5.0",
|
26 |
"langcodes>=3.5.0",
|
27 |
"language-data>=1.3.0",
|
28 |
+
"openai>=1.78.1",
|
29 |
+
"protobuf>=6.30.2",
|
30 |
+
"python-dotenv>=1.1.0",
|
31 |
"rich>=14.0.0",
|
32 |
+
"sacrebleu>=2.5.1",
|
33 |
"sentencepiece>=0.2.0",
|
34 |
+
"tiktoken>=0.9.0",
|
35 |
+
"tqdm>=4.67.1",
|
36 |
+
"transformers>=4.51.3",
|
37 |
]
|
uv.lock
CHANGED
The diff for this file is too large to render.
See raw diff
|
|