Skip to content

Commit

Permalink
Declared support for, and added testing against, Python 3.8. (carlton…
Browse files Browse the repository at this point in the history
  • Loading branch information
Djailla authored and carltongibson committed Oct 29, 2019
1 parent c07f297 commit aa7f7ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"

cache: pip

Expand All @@ -19,9 +20,9 @@ script:
matrix:
fast_finish: true
include:
- python: "3.7"
- python: "3.8"
env: TOXENV=isort,lint,docs
- python: "3.7"
- python: "3.8"
env: TOXENV=warnings
allow_failures:
- env: TOXENV=warnings
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
],
zip_safe=False,
python_requires='>=3.4',
python_requires='>=3.5',
install_requires=[
'Django>=1.11',
],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ envlist =
{py35,py36}-django20,
{py35,py36,py37}-django21,
{py35,py36,py37}-django22,
{py36,py37}-django30,
{py36,py37}-latest,
{py36,py37,38}-django30,
{py36,py37,38}-latest,
isort,lint,docs,warnings,


Expand Down

0 comments on commit aa7f7ff

Please sign in to comment.