Skip to content

Commit d3f6908

Browse files
Testing for more Python versions (#96)
1 parent 3d7e85f commit d3f6908

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ language: python
22
python:
33
- "2.7"
44
- "3.4"
5+
- "3.5"
6+
- "3.6"
7+
- "pypy"
8+
- "pypy3"
59
install: "pip install -r requirements/core.txt;pip install -r requirements/test.txt"
610
before_script: "pep8"
711
script: "nosetests --with-coverage --cover-package=optimizely"

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
'Operating System :: OS Independent',
3333
'Programming Language :: Python',
3434
'Programming Language :: Python :: 2.7',
35-
'Programming Language :: Python :: 3.4'
35+
'Programming Language :: Python :: 3.4',
36+
'Programming Language :: Python :: 3.5',
37+
'Programming Language :: Python :: 3.6'
3638
],
3739
packages=find_packages(
3840
exclude=['tests']

0 commit comments

Comments
 (0)