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

- Python 3.10 support

parent df4bd2cd
......@@ -35,6 +35,10 @@ jobs:
- ["3.9", "py39-mtacceptor"]
- ["3.9", "py39-mtacceptor-msgpack1"]
- ["3.9", "py39-uvloop"]
- ["3.10", "py310"]
- ["3.10", "py310-mtacceptor"]
- ["3.10", "py310-mtacceptor-msgpack1"]
- ["3.10", "py310-uvloop"]
- ["pypy2", "pypy"]
- ["pypy3", "pypy3"]
- ["pypy3", "pypy3-mtacceptor"]
......
......@@ -4,7 +4,7 @@ Changelog
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``.
See `issue 165 <https://github.com/zopefoundation/ZEO/issues/165>`_.
......
......@@ -50,6 +50,7 @@ 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
Topic :: Database
......
......@@ -6,6 +6,7 @@ envlist =
py37
py38
py39
py310
pypy
pypy3
simple
......@@ -44,14 +45,14 @@ setenv =
[testenv:simple]
# Test that 'setup.py test' works
basepython =
python3.6
python3
commands =
python setup.py -q test -q
deps = {[testenv]deps}
[testenv:docs]
basepython =
python3.6
python3
commands =
sphinx-build -b html doc doc/_build/html
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