Skip to content

Commit 8742589

Browse files
back to 3.13
1 parent 2a32636 commit 8742589

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
id: setup-python
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: "3.14"
24+
python-version: "3.13"
2525

2626
- name: Install pre-commit
2727
run: pip install pre-commit

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repos:
55
rev: v4.4.0
66
hooks:
77
- id: check-ast
8-
language_version: python3.14
8+
language_version: python3.13
99
- id: check-merge-conflict
1010
- id: check-case-conflict
1111
- id: check-json
@@ -35,8 +35,8 @@ repos:
3535
rev: 23.7.0
3636
hooks:
3737
- id: black
38-
language_version: python3.14
39-
args: [--target-version, py310]
38+
language_version: python3.13
39+
args: [--target-version, py312]
4040
files: ^src/.*\.py$
4141
exclude: ^src/dmss_api/
4242

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.14-slim AS base
1+
FROM python:3.13-slim AS base
22
ENV PYTHONUNBUFFERED=1
33
ENV PYTHONPATH=/code/src
44
WORKDIR /code

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ requires-poetry = ">=2.0"
1010
package-mode = false
1111

1212
[tool.poetry.dependencies]
13-
python = "^3.14"
13+
python = "^3.13"
1414
redis = "^7.2.1"
1515
APScheduler = "^3.11.2"
1616
docker = "^7.1.0"
@@ -50,7 +50,7 @@ all=true
5050

5151
[tool.black]
5252
line-length = 119
53-
target-version = ['py314']
53+
target-version = ['py312']
5454
exclude = '''
5555
/(
5656
\.eggs

0 commit comments

Comments
 (0)