Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
python-version: ['3.12']
toxenv: [django42, django52, quality]
toxenv: [django52, quality]

steps:
- uses: actions/checkout@v6
Expand All @@ -35,7 +35,7 @@ jobs:
run: tox

- name: Run Coverage
if: matrix.python-version == '3.12' && matrix.toxenv == 'django42'
if: matrix.python-version == '3.12' && matrix.toxenv == 'django52'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
25 changes: 2 additions & 23 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ binaryornot==0.6.0
# via
# -r requirements/test.txt
# cookiecutter
boto3==1.42.73
boto3==1.42.74
# via
# -r requirements/test.txt
# fs-s3fs
botocore==1.42.73
botocore==1.42.74
# via
# -r requirements/test.txt
# boto3
Expand All @@ -46,10 +46,6 @@ certifi==2026.2.25
# via
# -r requirements/test.txt
# requests
cffi==2.0.0
# via
# -r requirements/test.txt
# cryptography
charset-normalizer==3.4.6
# via
# -r requirements/test.txt
Expand Down Expand Up @@ -84,10 +80,6 @@ coverage[toml]==7.13.5
# coveralls
coveralls==4.1.0
# via -r requirements/test.txt
cryptography==46.0.5
# via
# -r requirements/test.txt
# secretstorage
ddt==1.7.2
# via -r requirements/test.txt
dill==0.4.1
Expand Down Expand Up @@ -152,11 +144,6 @@ jaraco-functools==4.4.0
# via
# -r requirements/test.txt
# keyring
jeepney==0.9.0
# via
# -r requirements/test.txt
# keyring
# secretstorage
jinja2==3.1.6
# via
# -r requirements/test.txt
Expand Down Expand Up @@ -229,10 +216,6 @@ pluggy==1.6.0
# -r requirements/tox.txt
# pytest
# tox
pycparser==3.0
# via
# -r requirements/test.txt
# cffi
pygments==2.19.2
# via
# -r requirements/test.txt
Expand Down Expand Up @@ -324,10 +307,6 @@ s3transfer==0.16.0
# via
# -r requirements/test.txt
# boto3
secretstorage==3.5.0
# via
# -r requirements/test.txt
# keyring
shellingham==1.5.4
# via
# -r requirements/test.txt
Expand Down
4 changes: 2 additions & 2 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ astroid==4.0.4
# pylint-celery
binaryornot==0.6.0
# via cookiecutter
boto3==1.42.73
boto3==1.42.74
# via fs-s3fs
botocore==1.42.73
botocore==1.42.74
# via
# boto3
# s3transfer
Expand Down
16 changes: 2 additions & 14 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,14 @@ astroid==4.0.4
# pylint-celery
binaryornot==0.6.0
# via cookiecutter
boto3==1.42.73
boto3==1.42.74
# via fs-s3fs
botocore==1.42.73
botocore==1.42.74
# via
# boto3
# s3transfer
certifi==2026.2.25
# via requests
cffi==2.0.0
# via cryptography
charset-normalizer==3.4.6
# via requests
click==8.3.1
Expand All @@ -51,8 +49,6 @@ coverage[toml]==7.13.5
# via coveralls
coveralls==4.1.0
# via -r requirements/test.in
cryptography==46.0.5
# via secretstorage
ddt==1.7.2
# via -r requirements/test.in
dill==0.4.1
Expand Down Expand Up @@ -86,10 +82,6 @@ jaraco-context==6.1.2
# via keyring
jaraco-functools==4.4.0
# via keyring
jeepney==0.9.0
# via
# keyring
# secretstorage
jinja2==3.1.6
# via
# code-annotations
Expand Down Expand Up @@ -135,8 +127,6 @@ platformdirs==4.9.4
# via pylint
pluggy==1.6.0
# via pytest
pycparser==3.0
# via cffi
pygments==2.19.2
# via
# pytest
Expand Down Expand Up @@ -200,8 +190,6 @@ rich==14.3.3
# typer
s3transfer==0.16.0
# via boto3
secretstorage==3.5.0
# via keyring
shellingham==1.5.4
# via typer
simplejson==3.20.2
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist = py{312}-django{42,52}, quality
envlist = py{312}-django{52}, quality

[testenv]
allowlist_externals =
make
deps =
django42: Django>=4.2,<5.0
django52: Django>=5.2,<6.0
-r{toxinidir}/requirements/test.txt
commands =
Expand Down