Skip to content

Commit

Permalink
Add testing with Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jan 21, 2020
1 parent 923446d commit 6590a87
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,6 +2,8 @@ language: python
python:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
install: pip install tox-travis coveralls
script: tox -v
after_success: coveralls
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Expand Up @@ -6,7 +6,7 @@ X.Y (YYY-MM-DD)

- **BACKWARD-INCOMPATIBLE** Dropped support for Django < 2.2.

- Confirmed support for Django 2.2 and Python 3.7 (no code changes were
- Confirmed support for Django 2.2 and Python 3.7 and 3.8 (no code changes were
required).

3.0 (2017-11-20)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -35,5 +35,6 @@ def read(*parts):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
5 changes: 3 additions & 2 deletions tox.ini
Expand Up @@ -2,14 +2,15 @@
downloadcache = {distshare}
args_are_paths = false
envlist =
# Django 2.2: Python 3.5, 3.6, 3.7
py{35,36,37}-dj22
# Django 2.2: Python 3.5, 3.6, 3.7, 3.8
py{35,36,37,38}-dj22

[testenv]
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
usedevelop = true
commands = make test
whitelist_externals = make
Expand Down

0 comments on commit 6590a87

Please sign in to comment.