Skip to content

Commit

Permalink
Merge pull request #12 from johnthagen/patch-1
Browse files Browse the repository at this point in the history
Support Python 3.8 & Django 3.0
  • Loading branch information
rpkilby authored Mar 10, 2020
2 parents 8cb312f + 756e742 commit c38a3b5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
docker:
- image: circleci/python:3.7

test-py38:
<<: *test-steps
docker:
- image: circleci/python:3.8
environment:
TOXENV: py38

test-py37:
<<: *test-steps
docker:
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ classifiers =
Framework :: Django
Framework :: Django :: 2.1
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Expand All @@ -54,6 +55,7 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Internet :: WWW/HTTP

[options]
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[tox]
envlist =
{py35,py36,py37}-django21,
{py35,py36,py37}-django22,
{py35,py36,py37,py38}-django22,
{py36,py37,py38}-django30,
dist,isort,lint,readme

[testenv]
Expand All @@ -14,6 +15,7 @@ deps =
coverage
django21: Django~=2.1
django22: Django~=2.2
django30: Django~=3.0

[testenv:dist]
commands = python manage.py test {posargs: --no-input -v 2}
Expand Down

0 comments on commit c38a3b5

Please sign in to comment.