From f55883200a8e9a01b783aefad74a15a4940808a0 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Thu, 27 Feb 2020 22:52:32 +0100 Subject: [PATCH] Add latest Python versions (#109) * 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 --- .travis.yml | 15 +++++++++------ README.md | 1 + docs/index.rst | 1 + docs/releases.rst | 5 +++++ setup.py | 1 + tox.ini | 2 ++ 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2d6972d..45292de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -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 diff --git a/README.md b/README.md index 365f5a4..daaea28 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/index.rst b/docs/index.rst index 5bc2d09..79da86a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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. diff --git a/docs/releases.rst b/docs/releases.rst index 7669b08..dd80f97 100644 --- a/docs/releases.rst +++ b/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 -------------------------------------- diff --git a/setup.py b/setup.py index 4c59879..172e31e 100644 --- a/setup.py +++ b/setup.py @@ -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", ], diff --git a/tox.ini b/tox.ini index 72d5060..b3e4037 100644 --- a/tox.ini +++ b/tox.ini @@ -2,6 +2,8 @@ envlist = py35 py36 + py37 + py38 pypy3 runner module