Skip to content

Commit

Permalink
fix test backports for 3.4 & 3.5, remove 3.4+crypto
Browse files Browse the repository at this point in the history
  • Loading branch information
bjester committed Sep 12, 2023
1 parent fed7ed9 commit 8fac257
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ jobs:
strategy:
max-parallel: 3
matrix:
python-version: [2.7, 3.4, 3.5]
# Packages are no longer available for the distribution that comes with the
# python:3.4 image, so we can't install the necessary dependencies. Eventually,
# this will happen to the others as well.
# EOL: [3.4]
python-version: [2.7, 3.5]
container:
image: python:${{ matrix.python-version }}
steps:
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ basepython =
py3.7: python3.7
py3.8: python3.8
py3.9: python3.9
postgres: python3.5
postgres: python3.6
windows: python3.6

deps =
Expand All @@ -29,6 +29,8 @@ deps =
cryptography1.8: cryptography==1.8.2
cryptography2.3: cryptography==2.3.1
py2.7: backports.test.support==0.1.1
py3.4: backports.test.support==0.1.1
py3.5: backports.test.support==0.1.1

commands =
sh -c '! tests/testapp/manage.py makemigrations --dry-run --exit --noinput'
Expand Down

0 comments on commit 8fac257

Please sign in to comment.