Merge pull request #1261 from moreati/prep-0.3.23

Prepare 0.3.23
pull/924/merge
Alex Willmer 7 months ago committed by GitHub
commit dcff603267
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -21,12 +21,18 @@ To avail of fixes in an unreleased version, please download a ZIP file
In progress (unreleased)
------------------------
v0.3.23 (2025-04-28)
--------------------
* :gh:issue:`1121` :mod:`mitogen`: Log skipped :py:mod:`termios` attributes
* :gh:issue:`1238` packaging: Avoid :py:mod:`ast`, requires Python = 2.6
* :gh:issue:`1118` CI: Statically specify test usernames and group names
* :gh:issue:`1118` CI: Don't copy SSH private key to temporary dir
* :gh:issue:`1118` CI: Don't share temporary directory between test groupings
* :gh:issue:`1256` CI: Upgrade Github jobs from Ubuntu 20.04 to 22.04 & 24.04
* :gh:issue:`1263` packaging: Fix InvalidVersion in release versions
v0.3.22 (2025-02-04)

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

@ -41,7 +41,8 @@ def grep_version():
match = version_pattern.search(fp.read())
if match is None:
raise ValueError('Could not find __version__ string in %s', path)
return '.'.join(str(part) for part in match.groups())
# E.g. '0.1.2', '0.1.3dev'
return '.'.join(str(part) for part in match.groups() if part)
def long_description():

Loading…
Cancel
Save