Skip to content

Commit

Permalink
Merge pull request #6 from zopefoundation/issue5
Browse files Browse the repository at this point in the history
Add support for Python 3.7.
  • Loading branch information
jamadden authored Oct 22, 2018
2 parents 684b62f + d978c09 commit 814b90b
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 22 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,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 -U pip setuptools zope.testrunner
- pip install -U coveralls coverage
Expand Down
22 changes: 11 additions & 11 deletions CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
=======
CHANGES
=======
=========
CHANGES
=========

4.1 (unreleased)
----------------
4.1.0 (unreleased)
==================

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


4.0 (2017-07-20)
----------------
4.0.0 (2017-07-20)
==================

- Dropped support for Python 2.6 and 3.3.

- Added support for Python 3.4, 3.5, 3.6, PyPy2 and PyPy3.


4.0.0a1 (2013-02-25)
--------------------
====================

- Added support for Python 3.3.

Expand All @@ -28,7 +28,7 @@ CHANGES


3.7.1 (2011-12-22)
------------------
==================

- Removed buildout part which was used during development but does not
compile on Windows.
Expand All @@ -37,7 +37,7 @@ CHANGES


3.7.0 (2010-09-18)
------------------
==================

- Initial release extracted from `zope.app.generations`.

Expand Down
File renamed without changes.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ def read(*rnames):


setup(name='zope.generations',
version='4.1.dev0',
version='4.1.0.dev0',
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
description='Zope application schema generations',
long_description=(
read('README.txt')
read('README.rst')
+ '\n\n.. contents::\n\n' +
'======================\n'
'Detailed Documentation\n'
'======================\n'
+ '\n\n' +
read('src', 'zope', 'generations', 'README.txt')
read('src', 'zope', 'generations', 'README.rst')
+ '\n\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
keywords="zope zodb schema generation",
classifiers=[
Expand All @@ -56,13 +56,14 @@ 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',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope :: 3'],
url='http://pypi.python.org/pypi/zope.generations',
url='https://github.com/zopefoundation/zope.generations',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir={'': 'src'},
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions src/zope/generations/tests/test_generations.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ def test_suite():
doctest.IGNORE_EXCEPTION_DETAIL
return unittest.TestSuite((
doctest.DocFileSuite(
'README.txt',
'README.rst',
setUp=zope.component.testing.setUp,
tearDown=tearDownREADME,
package='zope.generations',
checker=checker
),
doctest.DocTestSuite(
'zope.generations.generations',
checker=checker, optionflags=flags),
'zope.generations.generations',
checker=checker, optionflags=flags),
doctest.DocTestSuite(
'zope.generations.utility'),
'zope.generations.utility'),
))
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist =
py34,
py35,
py36,
py37,
pypy,
pypy3,
coverage
Expand Down

0 comments on commit 814b90b

Please sign in to comment.