Skip to content

Commit 0f495f6

Browse files
committed
Update deps and testing for what's supported
1 parent af72adb commit 0f495f6

File tree

3 files changed

+925
-1015
lines changed

3 files changed

+925
-1015
lines changed

.github/workflows/continuous-deployment.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-python@v5
2020
with:
21-
python-version: '3.9'
21+
python-version: '3.12'
2222

2323
- name: Install flake8
2424
run: pip install flake8
@@ -29,13 +29,11 @@ jobs:
2929
test-python:
3030
strategy:
3131
matrix:
32-
python: ['3.8', '3.9', '3.10', '3.11']
33-
django: ['2.2', '3.2', '4.2', '5.0']
32+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
33+
django: ['4.2', '5.1']
3434
exclude:
35-
- python: '3.8'
36-
django: '5.0'
3735
- python: '3.9'
38-
django: '5.0'
36+
django: '5.1'
3937
name: Test
4038
runs-on: ubuntu-latest
4139
steps:
@@ -73,7 +71,7 @@ jobs:
7371

7472
- uses: actions/setup-python@v5
7573
with:
76-
python-version: '3.9'
74+
python-version: '3.12'
7775
cache: 'pipenv'
7876

7977
- name: Install pipenv

Pipfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ celery = "*"
1010
fs = "*"
1111

1212
[dev-packages]
13-
django = "==4.2.*"
13+
django = "==5.1.*"
1414
Sphinx = "*"
1515
"flake8" = "*"
1616
twine = "*"
@@ -21,4 +21,4 @@ myst-parser = "*"
2121
sphinx-palewire-theme = "*"
2222

2323
[requires]
24-
python_version = "3.9"
24+
python_version = "3.12"

0 commit comments

Comments
 (0)