Skip to content

Commit 22675e5

Browse files
authored
Merge pull request #145 from chenrui333/py-3.8
add py3.{7,8} support
2 parents 6e14a50 + 2113797 commit 22675e5

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: python
22
dist: xenial
3-
sudo: required
43
python:
54
- "2.7"
65
- "3.6"
76
- "3.7"
87
- "3.7-dev"
8+
- "3.8"
99
- "3.8-dev"
1010

1111
addons:
@@ -15,9 +15,8 @@ addons:
1515

1616
matrix:
1717
allow_failures:
18-
python:
19-
- "3.7-dev"
20-
- "3.8-dev"
18+
- python: "3.7-dev"
19+
- python: "3.8-dev"
2120

2221
install:
2322
- pip install --upgrade pip

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,16 @@ def get_message_catalogs():
6969
"Topic :: Communications :: File Sharing",
7070
"Topic :: Software Development :: Libraries :: Python Modules",
7171
"Topic :: System :: Filesystems",
72+
"Programming Language :: Python :: 2",
7273
"Programming Language :: Python :: 2.7",
74+
"Programming Language :: Python :: 3",
7375
"Programming Language :: Python :: 3.1",
7476
"Programming Language :: Python :: 3.2",
7577
"Programming Language :: Python :: 3.3",
7678
"Programming Language :: Python :: 3.4",
7779
"Programming Language :: Python :: 3.5",
7880
"Programming Language :: Python :: 3.6",
81+
"Programming Language :: Python :: 3.7",
82+
"Programming Language :: Python :: 3.8",
7983
],
8084
)

tox.ini

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

44
[testenv]
55
commands = python setup.py test

0 commit comments

Comments
 (0)