Specifying python versions supported in setup.py (#382)

* Specifying python versions supported in setup.py

* Fixing py3
This commit is contained in:
Maxime Beauchemin 2016-04-20 12:27:17 -07:00
parent d96b634ded
commit 01a8c96820
2 changed files with 7 additions and 1 deletions

View File

@ -2,6 +2,7 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
cache:
directories:
- $HOME/.wheelhouse/
@ -10,7 +11,7 @@ before_install:
install:
- pip wheel -w $HOME/.wheelhouse -f $HOME/.wheelhouse .
- pip install --find-links=$HOME/.wheelhouse --no-index .
- pip install --find-links=$HOME/.wheelhouse --no-index -r dev-reqs.txt
- pip install -r dev-reqs.txt
- cd caravel/assets
- npm --version
- npm install

View File

@ -43,4 +43,9 @@ setup(
url='https://github.com/airbnb/caravel',
download_url=(
'https://github.com/airbnb/caravel/tarball/' + version.VERSION_STRING),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)