Skip to content

Commit 98323c6

Browse files
committed
Fix python2 version building
1 parent 2966d03 commit 98323c6

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.travis.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: python
22
python:
3+
- '2.7'
4+
- '3.4'
5+
- '3.5'
6+
- '3.6'
37
- '3.7'
8+
- '3.8'
49
install:
510
- pip install flake8
611
script:
712
- flake8 --count
8-
before_deploy: python setup.py sdist bdist_wheel
13+
- python setup.py bdist_wheel
14+
before_deploy: python setup.py sdist
915
deploy:
1016
- provider: pypi
1117
user: dolfinus

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,13 @@
2222
'Framework :: Setuptools Plugin',
2323
'Intended Audience :: Developers',
2424
"Programming Language :: Python :: 2",
25+
"Programming Language :: Python :: 2.7",
2526
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.4",
28+
"Programming Language :: Python :: 3.5",
29+
"Programming Language :: Python :: 3.6",
30+
"Programming Language :: Python :: 3.7",
31+
"Programming Language :: Python :: 3.8",
2632
"License :: OSI Approved :: MIT License",
2733
"Operating System :: OS Independent",
2834
],

0 commit comments

Comments
 (0)