Skip to content

Commit

Permalink
Merge pull request #9 from zopefoundation/py37
Browse files Browse the repository at this point in the history
Add support for Python 3.7.
  • Loading branch information
Michael Howitz committed Oct 9, 2018
2 parents c2fa995 + 67e9729 commit d31622a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 24 deletions.
7 changes: 0 additions & 7 deletions .bzrignore

This file was deleted.

13 changes: 7 additions & 6 deletions .travis.yml
Expand Up @@ -5,12 +5,13 @@ python:
- 3.4
- 3.5
- 3.6
# Force a newer PyPy on the old 'precise' CI image
# in order to install 'cryptography' needed for coveralls
# After September 2017 this should be the default and the version
# pin can be removed.
- pypy-5.6.0
- pypy3.5-5.8.0
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,7 @@
4.2.1 (unreleased)
==================

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


4.2.0 (2017-09-05)
Expand Down
9 changes: 0 additions & 9 deletions setup.cfg
@@ -1,11 +1,2 @@
[nosetests]
nocapture=1
cover-package=zope.structuredtext
cover-erase=1
#cover-branches=1
#cover-min-percentage=100
with-doctest=0
where=src

[bdist_wheel]
universal = 1
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -21,6 +21,7 @@
import os
from setuptools import setup, find_packages


def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()
Expand Down Expand Up @@ -49,6 +50,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',
'Operating System :: OS Independent',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,pypy,pypy3,coverage,docs
py27,py34,py35,py36,py37,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit d31622a

Please sign in to comment.