Skip to content

Commit

Permalink
fix: Upgrade to Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Sep 18, 2024
1 parent cc950e1 commit c3bbb0a
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 229 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
secrets: inherit
with:
# Cannot be set with an env var. Value must match in the release job.
python-version: 3.8
python-version: 3.12

release:
concurrency: release
Expand All @@ -25,7 +25,7 @@ jobs:
if: github.ref_name == 'main'
env:
# Value must match in the test job.
PYTHON_VERSION: 3.8
PYTHON_VERSION: 3.12
steps:
- name: 🛫 Checkout
uses: actions/checkout@v4
Expand Down
14 changes: 7 additions & 7 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ importlib-metadata = "==4.13.0" # TODO: remove. needed by old portal
django-formtools = "==2.2" # TODO: remove. needed by old portal
django-otp = "==1.0.2" # TODO: remove. needed by old portal
# https://pypi.org/user/codeforlife/
cfl-common = "==7.1.1" # TODO: remove
codeforlife-portal = "==7.1.1" # TODO: remove
rapid-router = "==6.0.1" # TODO: remove
cfl-common = "==7.3.3" # TODO: remove
codeforlife-portal = "==7.3.3" # TODO: remove
rapid-router = "==6.5.2" # TODO: remove
phonenumbers = "==8.12.12" # TODO: remove

[dev-packages]
black = "==23.1.0"
pytest = "==7.2.1"
black = "==24.8.0"
pytest = "==8.3.3"
pytest-cov = "==5.0.0"
pytest-env = "==0.8.1"
pytest-xdist = {version = "==3.5.0", extras = ["psutil"]}
Expand All @@ -34,12 +34,12 @@ django-extensions = "==3.2.1"
django-test-migrations = "==1.2.0"
pyparsing = "==3.0.9"
pydot = "==1.4.2"
pylint = "==3.0.2"
pylint = "==3.2.7"
pylint-django = "==2.5.5"
isort = "==5.13.2"
mypy = "==1.6.1"
django-stubs = {version = "==4.2.6", extras = ["compatible-mypy"]}
djangorestframework-stubs = {version = "==3.14.4", extras = ["compatible-mypy"]}

[requires]
python_version = "3.8"
python_version = "3.12"
Loading

0 comments on commit c3bbb0a

Please sign in to comment.