Skip to content

Commit

Permalink
Added support for Python 3.7 (#23)
Browse files Browse the repository at this point in the history
* Added support for Python 3.7

* fixed travis yml
  • Loading branch information
vernans committed Oct 3, 2018
1 parent 7212349 commit 0c8fb4d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Expand Up @@ -6,8 +6,13 @@ python:
- 3.4
- 3.5
- 3.6
- pypy-5.6.0
- pypy3.3-5.5-alpha
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -e .[test]
script:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,7 @@ Changes
4.6.3 (unreleased)
------------------

- Nothing changed yet.
- Added support for Python 3.7.


4.6.2 (2017-06-12)
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -11,6 +11,8 @@ environment:
- python : 35-x64
- python : 36
- python : 36-x64
- python: 37
- python: 37-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -69,6 +69,7 @@ def read(*rnames):
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
"Framework :: Zope3",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,py35,py36,pypy,pypy3
py27,py33,py34,py35,py36,py37,pypy,pypy3

[testenv]
commands =
Expand Down

0 comments on commit 0c8fb4d

Please sign in to comment.