Skip to content

Commit a004d92

Browse files
committed
Declare support for Python 2.7, 3.5, 3.6, and 3.7
The main goal of this commit is to clarify for the PyPI users which versions of Python are supported. These changes also: - Enable testing for 3.8-dev - Replace 3.7-dev with 3.7 in .travis.yml - Make Travis CI use xenial https://docs.travis-ci.com/user/reference/xenial/ - Remove obsolete sudo: false https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
1 parent 2e2e5da commit a004d92

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
dist: xenial
12
language: python
23
python:
34
- "nightly"
4-
- "3.7-dev"
5-
- 3.6
6-
- 3.5
7-
- 2.7
8-
sudo: false
5+
- "3.8-dev"
6+
- "3.7"
7+
- "3.6"
8+
- "3.5"
9+
- "2.7"
910
install:
1011
- pip install --upgrade setuptools pip
1112
- pip install --upgrade --upgrade-strategy eager --pre -e .[test] pytest-cov codecov 'coverage<5'

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@ def run(self):
8484
'Operating System :: OS Independent',
8585
'Programming Language :: Python',
8686
'Programming Language :: Python :: 2',
87+
'Programming Language :: Python :: 2.7',
8788
'Programming Language :: Python :: 3',
89+
'Programming Language :: Python :: 3.5',
90+
'Programming Language :: Python :: 3.6',
91+
'Programming Language :: Python :: 3.7',
8892
],
8993
install_requires = [
9094
'traitlets',

0 commit comments

Comments
 (0)