Skip to content

Commit

Permalink
Add latest Python versions (#109)
Browse files Browse the repository at this point in the history
* Add latest Python versions

* Add 3.8 and move custom includes to latest version

* Announce Python 3.8 support in metadata

* Document Python 3.8 support
  • Loading branch information
ecederstrand committed Feb 27, 2020
1 parent 7ab5bd7 commit f558832
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Expand Up @@ -12,6 +12,9 @@ matrix:
- os: linux
python: 3.7
env: TOX_ENV=py37
- os: linux
python: 3.8
env: TOX_ENV=py38
- os: linux
python: pypy3.5
env: TOX_ENV=pypy3
Expand All @@ -20,22 +23,22 @@ matrix:
language: generic
env: TOX_ENV=py37
- os: linux
python: 3.6
python: 3.8
env: TOX_ENV=with_optional
- os: linux
python: 3.7
python: 3.8
env: TOX_ENV=runner
- os: linux
python: 3.7
python: 3.8
env: TOX_ENV=module
- os: linux
python: 3.7
python: 3.8
env: TOX_ENV=lint
- os: linux
python: 3.7
python: 3.8
env: TOX_ENV=integration
- os: linux
python: 3.7
python: 3.8
env: TOX_ENV=coverage
install:
- pip3 install tox
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -31,6 +31,7 @@ on Python
3.5,
3.6,
3.7,
3.8,
and PyPy.
It is continuously tested on Linux, OS X, and Windows.

Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Expand Up @@ -28,6 +28,7 @@ Python
3.5,
3.6,
3.7,
3.8,
and PyPy.
It is continuously tested on Linux, OS X, and Windows.

Expand Down
5 changes: 5 additions & 0 deletions docs/releases.rst
@@ -1,6 +1,11 @@
Releases
========

Version 3.1, To Be Released
---------------------------

* Add support for Python 3.8.

Version 3.0, Released January 10, 2020
--------------------------------------

Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -73,6 +73,7 @@ def run(self):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Testing",
],
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Expand Up @@ -2,6 +2,8 @@
envlist =
py35
py36
py37
py38
pypy3
runner
module
Expand Down

0 comments on commit f558832

Please sign in to comment.