Skip to content

Commit

Permalink
Specifying python versions supported in setup.py (#382)
Browse files Browse the repository at this point in the history
* Specifying python versions supported in setup.py

* Fixing py3
  • Loading branch information
mistercrunch committed Apr 20, 2016
1 parent d96b634 commit 01a8c96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
cache:
directories:
- $HOME/.wheelhouse/
Expand All @@ -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
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@
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',
],
)

0 comments on commit 01a8c96

Please sign in to comment.