Skip to content

Commit 5a8df0c

Browse files
fix(deps): update python
1 parent 1519194 commit 5a8df0c

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/cluster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-python@v5
4040
with:
41-
python-version: "3.12"
41+
python-version: "3.14"
4242
- uses: abatilo/actions-poetry@v4
4343
with:
4444
poetry-version: "1.8.3"

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-python@v5
4040
with:
41-
python-version: 3.12
41+
python-version: 3.14
4242
- uses: abatilo/actions-poetry@v4
4343
with:
4444
poetry-version: 1.8.4

.github/workflows/datasets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/checkout@v4
5757
- uses: actions/setup-python@v5
5858
with:
59-
python-version: "3.12"
59+
python-version: "3.14"
6060
- uses: abatilo/actions-poetry@v4
6161
with:
6262
poetry-version: "1.8.3"

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v4
4646
- uses: actions/setup-python@v5
4747
with:
48-
python-version: "3.12"
48+
python-version: "3.14"
4949
- uses: abatilo/actions-poetry@v4
5050
with:
5151
poetry-version: "1.8.3"

.github/workflows/metadata.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v4
4040
- uses: actions/setup-python@v5
4141
with:
42-
python-version: "3.12"
42+
python-version: "3.14"
4343
- uses: abatilo/actions-poetry@v4
4444
with:
4545
poetry-version: "1.8.3"

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-python@v5
4040
with:
41-
python-version: "3.12"
41+
python-version: "3.14"
4242
- uses: abatilo/actions-poetry@v4
4343
with:
4444
poetry-version: "1.8.3"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
FROM python:3.12-slim
23+
FROM python:3.14-slim
2424

2525
# Poetry environment variables.
2626
ENV POETRY_VERSION=1.8.0 \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ packages = [{ include = "sr-data" }, { include = "sr-train" }, { include = "sr-f
3030

3131
[tool.poetry.dependencies]
3232
poetry = "1.8.4"
33-
python = "==3.10.* || ==3.11.* || ==3.12.*"
33+
python = "=3.14.2"
3434
sr-data = { path = "./sr-data" }
3535
sr-train = { path = "./sr-train" }
3636
sr-filter = { path = "./sr-filter" }

sr-data/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ readme = "README.md"
2929
packages = [{include = "sr_data", from = "src"}]
3030

3131
[tool.poetry.dependencies]
32-
python = "==3.10.* || ==3.11.* || ==3.12.*"
32+
python = "=3.14.2"
3333
langdetect = "1.0.9"
3434
pandas = "2.2.3"
3535
numpy = "<2"

sr-filter/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ sr-filter = "sr.sr:main"
3333

3434
[tool.poetry.dependencies]
3535
sr-data = "0.0.0"
36-
python = "==3.10.* || ==3.11.* || ==3.12.*"
36+
python = "=3.14.2"
3737
loguru = "^0.7.3"
3838

3939
[build-system]

0 commit comments

Comments
 (0)