Skip to content

Commit

Permalink
Merge pull request #145 from chenrui333/py-3.8
Browse files Browse the repository at this point in the history
add py3.{7,8} support
  • Loading branch information
acdha committed Jun 29, 2020
2 parents 6e14a50 + 2113797 commit 22675e5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
@@ -1,11 +1,11 @@
language: python
dist: xenial
sudo: required
python:
- "2.7"
- "3.6"
- "3.7"
- "3.7-dev"
- "3.8"
- "3.8-dev"

addons:
Expand All @@ -15,9 +15,8 @@ addons:

matrix:
allow_failures:
python:
- "3.7-dev"
- "3.8-dev"
- python: "3.7-dev"
- python: "3.8-dev"

install:
- pip install --upgrade pip
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -69,12 +69,16 @@ def get_message_catalogs():
"Topic :: Communications :: File Sharing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py33,py34,py35,py36
envlist = py27,py33,py34,py35,py36,py37,py38

[testenv]
commands = python setup.py test

0 comments on commit 22675e5

Please sign in to comment.