Skip to content

Commit fa62bc8

Browse files
author
lukpueh
authored
Merge pull request #966 from lukpueh/update-py-support
Update tested and supported Python versions
2 parents 409eef1 + f7a0685 commit fa62bc8

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ matrix:
1212
include:
1313
- python: "2.7"
1414
env: TOXENV=py27
15-
- python: "3.4"
16-
env: TOXENV=py34
1715
- python: "3.5"
1816
env: TOXENV=py35
1917
- python: "3.6"
2018
env: TOXENV=py36
19+
- python: "3.7"
20+
env: TOXENV=py37
21+
- python: "3.8"
22+
env: TOXENV=py38
2123
- python: "3.6"
2224
env: TOXENV=with-sslib-master
2325

appveyor.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
environment:
22
matrix:
3+
- PYTHON: "C:\\Python38"
4+
PYTHON_VERSION: 3.8
5+
PYTHON_ARCH: 32
6+
7+
- PYTHON: "C:\\Python37"
8+
PYTHON_VERSION: 3.7
9+
PYTHON_ARCH: 32
10+
311
- PYTHON: "C:\\Python36"
412
PYTHON_VERSION: 3.6
513
PYTHON_ARCH: 32
@@ -8,10 +16,6 @@ environment:
816
PYTHON_VERSION: 3.5
917
PYTHON_ARCH: 32
1018

11-
- PYTHON: "C:\\Python34"
12-
PYTHON_VERSION: 3.4
13-
PYTHON_ARCH: 32
14-
1519
- PYTHON: "C:\\Python27"
1620
PYTHON_VERSION: 2.7
1721
PYTHON_ARCH: 32

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,15 @@
103103
'Programming Language :: Python :: 2',
104104
'Programming Language :: Python :: 2.7',
105105
'Programming Language :: Python :: 3',
106-
'Programming Language :: Python :: 3.4',
107106
'Programming Language :: Python :: 3.5',
108107
'Programming Language :: Python :: 3.6',
108+
'Programming Language :: Python :: 3.7',
109+
'Programming Language :: Python :: 3.8',
109110
'Programming Language :: Python :: Implementation :: CPython',
110111
'Topic :: Security',
111112
'Topic :: Software Development'
112113
],
114+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
113115
install_requires = [
114116
'iso8601>=0.1.12',
115117
'requests>=2.19.1',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py34, py35, py36
7+
envlist = py27, py35, py36, py37, py38
88
skipsdist = true
99

1010
[testenv]

0 commit comments

Comments
 (0)