Merge branch 'master' into docs-master

docs-master
Alex Willmer 2 months ago
commit f988b4b21c

@ -20,10 +20,14 @@ To avail of fixes in an unreleased version, please download a ZIP file
Unreleased
----------
v0.3.5 (2024-03-17)
-------------------
* :gh:issue:`987` Support Python 3.11
* :gh:issue:`885` Fix :py:exc:`PermissionError` in :py:mod:`importlib` when
becoming an unprivileged user with Python 3.x
* :gh:issue:`1033` Support `PEP 451 <https://peps.python.org/pep-0451/>,
* :gh:issue:`1033` Support `PEP 451 <https://peps.python.org/pep-0451/>`_,
required by Python 3.12
* :gh:issue:`1033` Support Python 3.12

@ -2,7 +2,7 @@ import sys
sys.path.append('.')
VERSION = '0.3.4'
VERSION = '0.3.5'
author = u'Network Genomics'
copyright = u'2021, the Mitogen authors'

@ -35,7 +35,7 @@ be expected. On the slave, it is built dynamically during startup.
#: Library version as a tuple.
__version__ = (0, 3, 5, 'dev0')
__version__ = (0, 3, 6, 'dev0')
#: This is :data:`False` in slave contexts. Previously it was used to prevent

Loading…
Cancel
Save