Skip to content

Commit

Permalink
Add Python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Sep 21, 2017
1 parent c9e09e3 commit fde3990
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ python:
- 3.3
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
install:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

- Add support for Jython 2.7.

- Add support for Python 3.5.
- Add support for Python 3.5 and 3.6.

0.6.0 (2015-04-02)
------------------
Expand Down
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Jython',
Expand All @@ -69,19 +70,19 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
],
],
platforms=['any'],
packages=find_packages('src'),
package_dir = {'':'src'},
ext_modules = ext_modules,
extras_require = {
'test': (),
package_dir={'': 'src'},
ext_modules=ext_modules,
extras_require={
'test': [],
'testing': ['nose', 'coverage'],
},
},
test_suite='zodbpickle.tests.test_pickle.test_suite',
install_requires=[
'setuptools',
],
],
include_package_data=True,
zip_safe=False
)
zip_safe=False,
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
envlist = py27,py33,py34,py35,pypy,pypy3
envlist = py27,py33,py34,py35,py36,pypy,pypy3

[testenv]
deps =
Expand All @@ -14,7 +14,7 @@ commands =

[testenv:coverage]
basepython =
python3.3
python3
commands =
nosetests --with-xunit --with-xcoverage --no-skip zodbpickle.tests.test_pickle zodbpickle.tests.test_pickle_3
deps =
Expand Down

0 comments on commit fde3990

Please sign in to comment.