Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ language: python

matrix:
include:
- python: 3.8
env:
- TOXENV=py38
- python: 3.7
env:
- TOXENV=py37
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT_GUIDE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ steps manually.

1. Install Python Versions
~~~~~~~~~~~~~~~~~~~~~~~~~~
Our officially supported Python versions are 2.7, 3.6, and 3.7. Follow the idioms from this `excellent cheatsheet`_ to
Our officially supported Python versions are 2.7, 3.6, 3.7 and 3.8. Follow the idioms from this `excellent cheatsheet`_ to
make sure your code is compatible with both Python 2.7 and 3 versions.

Setup Python locally using `pyenv`_
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def read_requirements(req='base.txt'):
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities'
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py36, py37
envlist = py27, py36, py37, py38

[testenv:py27]
# Set this environment variable **only** for Python2.7. In Py >= 3.3, the hash seed property was set to a random
Expand Down