Skip to content

Commit 3edc763

Browse files
sebito91aviau
authored andcommitted
Test on py35 and py36 (influxdata#458)
1 parent 4673405 commit 3edc763

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ matrix:
1616
env: TOX_ENV=pypy
1717
- python: 3.4
1818
env: TOX_ENV=py34
19-
# An issue in travis-ci prevents this case from running
20-
# Link to issue: https://github.com/travis-ci/travis-ci/issues/6304
21-
# - python: pypy3.3-5.2-alpha1
22-
# env: TOX_ENV=pypy3
23-
- python: 3.4
19+
- python: 3.5
20+
env: TOX_ENV=py35
21+
- python: 3.6
22+
env: TOX_ENV=py36
23+
- python: 3.6
2424
env: TOX_ENV=docs
25-
- python: 3.4
25+
- python: 3.6
2626
env: TOX_ENV=flake8
27-
- python: 3.4
27+
- python: 3.6
2828
env: TOX_ENV=coverage
2929

3030
install:

dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
requests
1+
requests>=2.17.0
22
nose
33
mock
4-
pandas
4+
pandas==0.20.1
55
Sphinx==1.5.5
66
sphinx_rtd_theme
77
wheel

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
'Programming Language :: Python :: 2.7',
5151
'Programming Language :: Python :: 3',
5252
'Programming Language :: Python :: 3.4',
53+
'Programming Language :: Python :: 3.5',
54+
'Programming Language :: Python :: 3.6',
5355
'Topic :: Software Development :: Libraries',
5456
'Topic :: Software Development :: Libraries :: Python Modules',
5557
),

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tox]
2-
envlist = py27, py34, pypy, pypy3, flake8, coverage, docs
2+
envlist = py27, py34, py35, py36, pypy, pypy3, flake8, coverage, docs
33

44
[testenv]
55
passenv = INFLUXDB_PYTHON_INFLUXD_PATH
66
setenv = INFLUXDB_PYTHON_SKIP_SERVER_TESTS=False
77
deps = -r{toxinidir}/requirements.txt
88
-r{toxinidir}/test-requirements.txt
9-
py27,py34: pandas
9+
py27,py34,py35,py36: pandas==0.20.1
1010
# Only install pandas with non-pypy interpreters
1111
commands = nosetests -v --with-doctest {posargs}
1212

@@ -25,7 +25,7 @@ commands = nosetests -v --with-coverage --cover-html --cover-package=influxdb
2525

2626
[testenv:docs]
2727
deps = -r{toxinidir}/requirements.txt
28-
pandas
28+
pandas==0.20.1
2929
Sphinx==1.5.5
3030
sphinx_rtd_theme
3131
commands = sphinx-build -b html docs/source docs/build

0 commit comments

Comments
 (0)