Skip to content

Commit

Permalink
Fix python2 version building
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Jul 29, 2020
1 parent 2966d03 commit 98323c6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
@@ -1,11 +1,17 @@
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
install:
- pip install flake8
script:
- flake8 --count
before_deploy: python setup.py sdist bdist_wheel
- python setup.py bdist_wheel
before_deploy: python setup.py sdist
deploy:
- provider: pypi
user: dolfinus
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Expand Up @@ -22,7 +22,13 @@
'Framework :: Setuptools Plugin',
'Intended Audience :: Developers',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit 98323c6

Please sign in to comment.