Skip to content

Commit 2b1a6e7

Browse files
authored
Merge pull request #461 from Jamim/feature/python-classifiers
Declare support for Python 2.7, 3.5, 3.6, and 3.7
2 parents 2e2e5da + a004d92 commit 2b1a6e7

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)