Skip to content

Commit 3bd2c99

Browse files
committed
Add support for Python up to 3.7 and PyPy 7.1
1 parent 608d400 commit 3bd2c99

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.travis.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ matrix:
77
- os: linux
88
language: python
99
python: pypy-5.4
10+
- os: linux
11+
language: python
12+
python: pypy2.7-5.10
13+
- os: linux
14+
language: python
15+
python: pypy3.5-5.10
16+
- os: linux
17+
language: python
18+
python: pypy2.7-6.0
19+
- os: linux
20+
language: python
21+
python: pypy3.5-6.0
22+
- os: linux
23+
language: python
24+
python: pypy2.7-7.1
25+
- os: linux
26+
language: python
27+
python: pypy3.5-7.1
1028
- os: linux
1129
language: python
1230
python: 2.7
@@ -19,13 +37,16 @@ matrix:
1937
- os: linux
2038
language: python
2139
python: 3.6
40+
- os: linux
41+
language: python
42+
python: 3.7
2243
install:
2344
|
2445
if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
2546
pip install --upgrade pip setuptools tox-travis;
2647
elif [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
2748
brew tap drolando/homebrew-deadsnakes;
28-
brew install python34 python35 python3 pypy
49+
brew install python34 python35 python36 python3 pypy
2950
pip install --upgrade pip setuptools
3051
pip install --user tox;
3152
fi

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def readme():
7070
'Programming Language :: Python :: 3.4',
7171
'Programming Language :: Python :: 3.5',
7272
'Programming Language :: Python :: 3.6',
73+
'Programming Language :: Python :: 3.7',
7374
'Programming Language :: Python :: Implementation :: CPython',
7475
'Programming Language :: Python :: Implementation :: PyPy',
7576
'Topic :: System :: Systems Administration :: Authentication/Directory', # noqa: E501

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pypy, py27, py34, py35, py36
2+
envlist = pypy, py27, py34, py35, py36, py37
33
minversion = 1.6.0
44

55
[testenv]

0 commit comments

Comments
 (0)