Skip to content

Commit

Permalink
Added support for Python 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
vernans committed Oct 3, 2018
1 parent a8d2fa4 commit 03daa59
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[run]
branch = True
source = src

[report]
precision = 2
13 changes: 10 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,21 @@ python:
- 3.5
- 3.6
- pypy
- pypy3.3-5.2-alpha1
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -U setuptools==33.1.1
- pip install coverage coveralls
- pip install zc.buildout
- buildout bootstrap
- buildout
script:
- bin/test -v1
- coverage run bin/test -v1
after_success:
- coveralls
notifications:
email: false
cache:
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
4.3 (unreleased)
----------------

- Added support for Python 3.7.

4.2 (2017-04-26)
----------------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
setup(
name='DateTime',
version=__version__,
url='http://pypi.python.org/pypi/DateTime',
url='https://github.com/zopefoundation/DateTime',
license='ZPL 2.1',
description="""\
This package provides a DateTime data type, as known from Zope 2.
Expand All @@ -50,6 +50,7 @@
"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",
],
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,pypy,pypy3
py27,py34,py35,py36,py37,pypy,pypy3

[testenv]
commands =
Expand All @@ -9,5 +9,4 @@ commands =
{envbindir}/test -v1
skip_install = true
deps =
setuptools==33.1.1
zc.buildout

0 comments on commit 03daa59

Please sign in to comment.