Skip to content

Commit 82ba481

Browse files
committed
python 13.3
1 parent c0523f1 commit 82ba481

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Python
3939
uses: actions/setup-python@v2
4040
with:
41-
python-version: "3.12"
41+
python-version: "3.13"
4242

4343
- name: Install dependencies
4444
run: |

Dockerfile

Lines changed: 1 addition & 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
EXPOSE 8888
44

mypy.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[mypy]
2-
python_version = 3.12
2+
python_version = 3.13
33
ignore_missing_imports = True
44

55
[mypy-modeemintternet.migrations.*]

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=30.3.0", "wheel", "setuptools_scm"]
2+
requires = ["setuptools>=30.3.0<81", "wheel", "setuptools_scm"]
33

44
[tool.pytest.ini_options]
55
testpaths = "modeemintternet"
@@ -13,7 +13,7 @@ django-settings-module = "config.settings.local"
1313

1414
[tool.black]
1515
line-length = 88
16-
target-version = ['py312']
16+
target-version = ['py313']
1717
include = '\.pyi?$'
1818
exclude = '''
1919
(
@@ -35,11 +35,11 @@ legacy_tox_ini = """
3535
[tox]
3636
skipsdist = True
3737
envlist =
38-
py312
38+
py313
3939
4040
[gh-actions]
4141
python =
42-
3.12: py312
42+
3.13: py313
4343
4444
# Normal test environment runs pytest which orchestrates other tools
4545
[testenv]

0 commit comments

Comments
 (0)