Skip to content

Commit 71c436f

Browse files
authored
updated python version and removed typed-ast (#129)
1 parent ac9ae5c commit 71c436f

File tree

5 files changed

+8
-60
lines changed

5 files changed

+8
-60
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ persistent=yes
8484

8585
# Minimum Python version to use for version dependent checks. Will default to
8686
# the version used to run pylint.
87-
py-version=3.12
87+
py-version=3.13
8888

8989
# Discover python modules and packages in the file system subtree.
9090
recursive=no

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12.6
1+
3.13.5

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-slim
1+
FROM python:3.13-slim
22

33
COPY . ./
44

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "ONS Digital eQ Translations App"
55
authors = ["ONSDigital"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.12"
8+
python = "^3.13"
99
babel = "==2.14.0" # Temporarily pinned - problem for translations found in v2.15.0, see: https://github.com/ONSdigital/eq-questionnaire-runner/pull/1384
1010
jsonpointer = "*"
1111
tqdm = "*"
@@ -18,7 +18,6 @@ pylint = "*"
1818
pytest = "*"
1919
black = "*"
2020
pytest-cov = "*"
21-
typed-ast = "*"
2221
flake8-quotes = "*"
2322

2423
[build-system]

0 commit comments

Comments
 (0)