Skip to content

Commit

Permalink
Merge pull request #6 from zopefoundation/Python3.7support
Browse files Browse the repository at this point in the history
Python3.7support
  • Loading branch information
vernans committed Oct 8, 2018
2 parents 0a53097 + 8fdda92 commit 7c794b3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ python:
- 3.5
- 3.6
- pypy
- pypy3.5-5.8.0
- 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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
4.1.1 (unreleased)
==================

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


4.1.0 (2017-08-03)
Expand Down
2 changes: 1 addition & 1 deletion docs/narr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Usage within an Object field:
>>> a.location = loc
Traceback (most recent call last):
...
WrongContainedType: ([WrongType('foo', <type 'unicode'>, '__name__')], 'location')
SchemaNotCorrectlyImplemented: ([WrongType('foo', <type 'unicode'>, '__name__')], 'location')


:func:`~zope.location.location.inside`
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,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',
'Natural Language :: English',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py27,jython,pypy,coverage
py27,py34,py35,py36,pypy,pypy3,coverage
py27,py34,py35,py36,py37,pypy,pypy3,coverage

[testenv]
commands =
Expand All @@ -19,7 +19,7 @@ commands =
[testenv:coverage]
usedevelop = true
basepython =
python2.7
python3.7
commands =
coverage run -m zope.testrunner --test-path=src
coverage run -a -m sphinx -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest
Expand All @@ -31,7 +31,7 @@ deps =

[testenv:docs]
basepython =
python2.7
python3.7
commands =
sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
Expand Down

0 comments on commit 7c794b3

Please sign in to comment.