8000 [WIP] adding py35 and py36 · influxdata/influxdb-python@0abdc8e · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 0abdc8e

Browse files
committed
[WIP] adding py35 and py36
1 parent 4673405 commit 0abdc8e

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

.travis.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,28 @@ 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
2319
- python: 3.4
2420
env: TOX_ENV=docs
2521
- python: 3.4
2622
env: TOX_ENV=flake8
2723
- python: 3.4
2824
env: TOX_ENV=coverage
25+
- python: 3.5
26+
env: TOX_ENV=py35
27+
- python: 3.5
28+
env: TOX_ENV=docs
29+
- python: 3.5
30+
env: TOX_ENV=flake8
31+
- python: 3.5
32+
env: TOX_ENV=coverage
33+
- python: 3.6
34+
env: TOX_ENV=py36
35+
- python: 3.6
36+
env: TOX_ENV=docs
37+
- python: 3.6
38+
env: TOX_ENV=flake8
39+
- python: 3.6
40+
env: TOX_ENV=coverage
2941

3042
install:
3143
- pip install tox

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)
0