Commit 4b1f44a3 authored by Jens Vagelpohl's avatar Jens Vagelpohl

- Python 3.10 support

parent df4bd2cd
...@@ -35,6 +35,10 @@ jobs: ...@@ -35,6 +35,10 @@ jobs:
- ["3.9", "py39-mtacceptor"] - ["3.9", "py39-mtacceptor"]
- ["3.9", "py39-mtacceptor-msgpack1"] - ["3.9", "py39-mtacceptor-msgpack1"]
- ["3.9", "py39-uvloop"] - ["3.9", "py39-uvloop"]
- ["3.10", "py310"]
- ["3.10", "py310-mtacceptor"]
- ["3.10", "py310-mtacceptor-msgpack1"]
- ["3.10", "py310-uvloop"]
- ["pypy2", "pypy"] - ["pypy2", "pypy"]
- ["pypy3", "pypy3"] - ["pypy3", "pypy3"]
- ["pypy3", "pypy3-mtacceptor"] - ["pypy3", "pypy3-mtacceptor"]
......
...@@ -4,7 +4,7 @@ Changelog ...@@ -4,7 +4,7 @@ Changelog
5.3.0 (unreleased) 5.3.0 (unreleased)
------------------ ------------------
- Add support for Python 3.8 and Python 3.9. - Add support for Python 3.8, 3.9 and 3.10.
- Add more accurate error handling for ``asyncio.CancelledError``. - Add more accurate error handling for ``asyncio.CancelledError``.
See `issue 165 <https://github.com/zopefoundation/ZEO/issues/165>`_. See `issue 165 <https://github.com/zopefoundation/ZEO/issues/165>`_.
......
...@@ -50,6 +50,7 @@ Programming Language :: Python :: 3.6 ...@@ -50,6 +50,7 @@ Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy Programming Language :: Python :: Implementation :: PyPy
Topic :: Database Topic :: Database
......
...@@ -6,6 +6,7 @@ envlist = ...@@ -6,6 +6,7 @@ envlist =
py37 py37
py38 py38
py39 py39
py310
pypy pypy
pypy3 pypy3
simple simple
...@@ -44,14 +45,14 @@ setenv = ...@@ -44,14 +45,14 @@ setenv =
[testenv:simple] [testenv:simple]
# Test that 'setup.py test' works # Test that 'setup.py test' works
basepython = basepython =
python3.6 python3
commands = commands =
python setup.py -q test -q python setup.py -q test -q
deps = {[testenv]deps} deps = {[testenv]deps}
[testenv:docs] [testenv:docs]
basepython = basepython =
python3.6 python3
commands = commands =
sphinx-build -b html doc doc/_build/html sphinx-build -b html doc doc/_build/html
extras = extras =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment