Skip to content

Commit

Permalink
Add support for Python 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Nov 13, 2020
1 parent 1eae57d commit 43ead95
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 22 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Expand Up @@ -24,13 +24,15 @@ matrix:
- coveralls
- python: "3.8"
env: TOXENV=py38
- python: "3.9"
env: TOXENV=py39

install:
- travis_retry pip install -U pip setuptools tox
- travis_retry pip install -U coverage coveralls
- pip install -U pip setuptools tox
- pip install -U coverage coveralls

script:
- travis_retry tox
- tox

notifications:
email: false
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
@@ -1,11 +1,13 @@
Change Log
==========

2.5.1 (unreleased)
2.6.0 (unreleased)
------------------

- Fix DeprecationWarnings occurring on Zope 5.

- Add support for Python 3.9.


2.5 (2020-10-12)
----------------
Expand Down
35 changes: 18 additions & 17 deletions setup.py
Expand Up @@ -29,22 +29,23 @@ def _package_doc(name):
description='Pluggable Zope authentication / authorization framework',
long_description=README,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Plone',
'Framework :: Zope :: 4',
'Framework :: Zope :: 5',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
'Topic :: System :: Systems Administration :: '
'Authentication/Directory',
],
'Development Status :: 5 - Production/Stable',
'Framework :: Plone',
'Framework :: Zope :: 4',
'Framework :: Zope :: 5',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development',
'Topic :: System :: Systems Administration :: '
'Authentication/Directory',
],
keywords='web application server zope',
author='Zope Foundation and Contributors',
author_email='zope-cmf@zope.org',
Expand Down Expand Up @@ -72,7 +73,7 @@ def _package_doc(name):
'Products.GenericSetup >= 2.0b1',
'Products.Sessions',
'Products.StandardCacheManagers',
],
],
extras_require={
'ip_range': ['IPy'],
'zserver': ['ZServer >= 4.0a1'],
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -8,6 +8,7 @@ envlist =
py37,
py37-ip_range,
py38,
py39,
coverage-report,

[testenv]
Expand Down
2 changes: 1 addition & 1 deletion version.txt
@@ -1 +1 @@
2.5.1.dev0
2.6.0.dev0

0 comments on commit 43ead95

Please sign in to comment.