Skip to content

Commit 16a75b4

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

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.travis.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ matrix:
77
- os: linux
88
language: python
99
python: pypy-5.4
10+
- os: linux
11+
language: python
12+
python: pypy-5.10
13+
- os: linux
14+
language: python
15+
python: pypy-6.0
16+
- os: linux
17+
language: python
18+
python: pypy-7.1
1019
- os: linux
1120
language: python
1221
python: 2.7
@@ -19,13 +28,16 @@ matrix:
1928
- os: linux
2029
language: python
2130
python: 3.6
31+
- os: linux
32+
language: python
33+
python: 3.7
2234
install:
2335
|
2436
if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
2537
pip install --upgrade pip setuptools tox-travis;
2638
elif [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
2739
brew tap drolando/homebrew-deadsnakes;
28-
brew install python34 python35 python3 pypy
40+
brew install python34 python35 python36 python3 pypy
2941
pip install --upgrade pip setuptools
3042
pip install --user tox;
3143
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)