Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop old Django and Python versions #166

Closed
Closed
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
73 changes: 3 additions & 70 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,86 +7,21 @@ workflows:
matrix:
parameters:
python_image:
- "python:2.7-slim"
- "python:3.4-slim"
- "python:3.5-slim"
- "python:3.6-slim"
- "python:3.7-slim"
- "python:3.8-slim"
- "pypy:2-slim-buster"
- "python:3.9-slim"
- "pypy:3-slim-buster"
django_version:
- "master"
- "3.0.x" # 3.x supports python 3.6 to 3.9
- "2.2.x" # 2.x supports python 3.4 to 3.7
- "2.1.x"
- "2.0.x"
- "1.11.x" # 1.11.x supports python 2.7
- "1.10.x"
- "1.9.x"
- "1.8.x"
- "3.0.x" # 3.0 supports python 3.6 to 3.9
- "2.2.x" # 2.2 supports python 3.5 to 3.9
exclude:
- python_image: "python:3.8-slim"
django_version: "2.2.x"
- python_image: "python:3.8-slim"
django_version: "2.1.x"
- python_image: "python:3.8-slim"
django_version: "2.0.x"
- python_image: "python:3.8-slim"
django_version: "1.11.x"
- python_image: "python:3.8-slim"
django_version: "1.10.x"
- python_image: "python:3.8-slim"
django_version: "1.9.x"
- python_image: "python:3.8-slim"
django_version: "1.8.x"

- python_image: "python:3.7-slim"
django_version: "1.10.x"
- python_image: "python:3.7-slim"
django_version: "1.9.x"
- python_image: "python:3.7-slim"
django_version: "1.8.x"

- python_image: "python:3.6-slim"
django_version: "1.10.x"
- python_image: "python:3.6-slim"
django_version: "1.9.x"
- python_image: "python:3.6-slim"
django_version: "1.8.x"

- python_image: "python:3.5-slim"
django_version: "master"
- python_image: "python:3.5-slim"
django_version: "3.0.x"

- python_image: "python:3.4-slim"
django_version: "master"
- python_image: "python:3.4-slim"
django_version: "3.0.x"

- python_image: "python:2.7-slim"
django_version: "master"
- python_image: "python:2.7-slim"
django_version: "3.0.x"
- python_image: "python:2.7-slim"
django_version: "2.2.x"
- python_image: "python:2.7-slim"
django_version: "2.1.x"
- python_image: "python:2.7-slim"
django_version: "2.0.x"

- python_image: "pypy:2-slim-buster"
django_version: "master"
- python_image: "pypy:2-slim-buster"
django_version: "3.0.x"
- python_image: "pypy:2-slim-buster"
django_version: "2.2.x"
- python_image: "pypy:2-slim-buster"
django_version: "2.1.x"
- python_image: "pypy:2-slim-buster"
django_version: "2.0.x"

jobs:
test:
parameters:
Expand All @@ -111,7 +46,6 @@ jobs:
condition:
not:
or:
- equal: [ "pypy:2-slim-buster", << parameters.python_image >> ]
- equal: [ "pypy:3-slim-buster", << parameters.python_image >> ]
steps:
- run:
Expand All @@ -123,7 +57,6 @@ jobs:
- when:
condition:
or:
- equal: [ "pypy:2-slim-buster", << parameters.python_image >> ]
- equal: [ "pypy:3-slim-buster", << parameters.python_image >> ]
steps:
- run:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*.db
*.sw[po]
.cache
.coverage
.tox
dist
build
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[wheel]
universal = 1

[tool:pytest]
addopts = -vs --tb=short --pep8 --flakes

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*parts):


install_requires = [
'Django>=1.8',
'Django>=2.2',
]

jinja2_requires = [
Expand All @@ -32,6 +32,7 @@ def read(*parts):

test_requires = [
'pytest<4.0',
'pytest-cov',
'pytest-django',
'pytest-flakes==1.0.1',
'pytest-pep8==1.0.6',
Expand Down Expand Up @@ -72,14 +73,11 @@ def read(*parts):
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
'Framework :: Django',
Expand Down
32 changes: 8 additions & 24 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,42 +1,26 @@
[tox]
envlist =
{3.6,3.7,3.8,pypy3}-master,
{3.6,3.7,3.8,pypy3}-3.0.x,
{3.5,3.6,3,7,pypy3}-2.2.x,
{2.7,3.4,3.5,3.6,pypy,pypy3}-2.1.x,
{3.4,3.5,3.6,pypy3}-2.0.x,
{2.7,3.4,3.5,3.6,pypy,pypy3}-1.11.x,
{2.7,3.4,3.5,3.6,pypy}-1.10.x,
{2.7,3.4,3.5,3.6,pypy}-1.9.x,
{2.7,3.4,3.5,3.6,pypy}-1.8.x
{3.6,3.7,3.8,3.9,pypy3}-main
{3.6,3.7,3.8,3.9,pypy3}-3.0.x
{3.6,3,7,3.8,3.9,pypy3}-2.2.x

[testenv]
setenv =
PYTHONPATH={toxinidir}
PYTHONDONTWRITEBYTECODE=1
commands =
pip install --upgrade pip setuptools wheel
pip install pytest-cov
pip install -e .
pip install -e .[tests]
py.test --cov={toxinidir}/csp {toxinidir}/csp
pytest --cov={toxinidir}/csp {toxinidir}/csp
basepython =
2.7: python2.7
3.4: python3.4
3.5: python3.5
3.6: python3.6
3.7: python3.7
3.8: python3.8
pypy: pypy
3.9: python3.8
pypy3: pypy3
deps=
pytest
1.8: Django>=1.8,<1.9
1.9: Django>=1.9,<1.10
1.10: Django>=1.10,<1.11
1.11: Django>=1.11,<1.12
2.0: Django>=2.0,<2.1
2.1: Django>=2.1,<2.2
2.2: Django>=2.2,<2.3
3.0: Django>=3.0,<3.1
master: https://github.com/django/django/archive/master.tar.gz
2.2.x: Django>=2.2,<2.3
3.0.x: Django>=3.0,<3.1
main: https://github.com/django/django/archive/main.tar.gz