Skip to content

Commit

Permalink
Add support for Python 3.5, 3.9, 3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Aug 30, 2022
1 parent a830a4e commit 8047f43
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ testenv-setenv = [

[coverage]
fail-under = 99

[manifest]
additional-rules = [
"recursive-include src *.zcml",
]
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
CHANGES
=========

4.4.1 (unreleased)
==================
4.5 (unreleased)
================

- Nothing changed yet.
- Add support for Python 3.5, 3.9, 3.10.


4.4.0 (2020-10-16)
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ recursive-include docs *.txt
recursive-include docs Makefile

recursive-include src *.py
recursive-include src *.zcml
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def read(*rnames):
]

setup(name='zope.session',
version='4.4.1.dev0',
version='4.5.dev0',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
description='Client identification and sessions for Zope',
Expand All @@ -57,9 +57,12 @@ def read(*rnames):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down

0 comments on commit 8047f43

Please sign in to comment.