From 01a8c96820f13639d33fcaeb3faf11f6494eb8f1 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 20 Apr 2016 12:27:17 -0700 Subject: [PATCH] Specifying python versions supported in setup.py (#382) * Specifying python versions supported in setup.py * Fixing py3 --- .travis.yml | 3 ++- setup.py | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2fd433c294f6f..c3023d67e66d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index b1e7d01d9a83e..a630c0561d0a5 100644 --- a/setup.py +++ b/setup.py @@ -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', + ], )