Skip to content

Commit 5b9113d

Browse files
hugovkKojoley
authored andcommitted
TST: Update Python versions
1 parent eaa0f63 commit 5b9113d

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ matrix:
55
- python: 2.7
66
- python: 3.4
77
- python: 3.5
8+
- python: 3.6
89
- python: "nightly"
910
env: PRE=--pre
1011
allow_failures:

appveyor.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,35 @@ environment:
1010

1111
matrix:
1212
- PYTHON: "C:\\Python27_32"
13-
PYTHON_VERSION: "2.7"
13+
PYTHON_VERSION: "2.7.14"
1414
PYTHON_ARCH: "32"
1515

1616
- PYTHON: "C:\\Python27_64"
17-
PYTHON_VERSION: "2.7"
17+
PYTHON_VERSION: "2.7.14"
1818
PYTHON_ARCH: "64"
1919

2020
- PYTHON: "C:\\Python34_32"
21-
PYTHON_VERSION: "3.4.3"
21+
PYTHON_VERSION: "3.4.4"
2222
PYTHON_ARCH: "32"
2323

2424
- PYTHON: "C:\\Python34_64"
25-
PYTHON_VERSION: "3.4.3"
25+
PYTHON_VERSION: "3.4.4"
2626
PYTHON_ARCH: "64"
2727

2828
- PYTHON: "C:\\Python35"
29-
PYTHON_VERSION: "3.5.0"
29+
PYTHON_VERSION: "3.5.4"
3030
PYTHON_ARCH: "32"
3131

3232
- PYTHON: "C:\\Python35-x64"
33-
PYTHON_VERSION: "3.5.0"
33+
PYTHON_VERSION: "3.5.4"
34+
PYTHON_ARCH: "64"
35+
36+
- PYTHON: "C:\\Python36"
37+
PYTHON_VERSION: "3.6"
38+
PYTHON_ARCH: "32"
39+
40+
- PYTHON: "C:\\Python36-x64"
41+
PYTHON_VERSION: "3.6"
3442
PYTHON_ARCH: "64"
3543

3644
install:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
platforms='Cross platform (Linux, Mac OSX, Windows)',
1111
install_requires=['six'],
1212
license="BSD",
13+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
1314
classifiers=['Development Status :: 4 - Beta',
1415
'Programming Language :: Python :: 2',
1516
'Programming Language :: Python :: 2.7',
1617
'Programming Language :: Python :: 3',
17-
'Programming Language :: Python :: 3.3',
1818
'Programming Language :: Python :: 3.4',
1919
'Programming Language :: Python :: 3.5',
20+
'Programming Language :: Python :: 3.6',
2021
],
2122
keywords='cycle kwargs',
2223
)

0 commit comments

Comments
 (0)