diff --git a/.travis.yml b/.travis.yml index abc61db..ddd47f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ +dist: xenial language: python matrix: - python: '2.7' - python: '3.5' - python: '3.6' - python: '3.7' - dist: xenial + - python: '3.8' - python: 'pypy' - python: 'pypy3' cache: pip diff --git a/CHANGES.rst b/CHANGES.rst index fe0852d..800af66 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,10 +3,11 @@ Changelog ========= -2.8.1 (unreleased) +2.9.0 (unreleased) ------------------ -- Nothing changed yet. +- Add ``python3.8`` suport. + [sobolevn] 2.8.0 (2019-12-05) diff --git a/setup.py b/setup.py index 69500e8..ed9ec40 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,7 @@ def get_version(file="flake8_isort.py"): 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development',