Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
a904564a
Commit
a904564a
authored
Dec 11, 2021
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparing release 21.12.0
parent
8455c2f5
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
46 additions
and
22 deletions
+46
-22
CHANGES.rst
CHANGES.rst
+44
-0
docs/changes/1721.feature
docs/changes/1721.feature
+0
-4
docs/changes/1814.bugfix
docs/changes/1814.bugfix
+0
-1
docs/changes/1820.bugfix
docs/changes/1820.bugfix
+0
-3
docs/changes/1822.feature
docs/changes/1822.feature
+0
-5
docs/changes/1837.feature
docs/changes/1837.feature
+0
-1
docs/changes/1839.bugfix
docs/changes/1839.bugfix
+0
-3
docs/changes/1843.feature
docs/changes/1843.feature
+0
-3
src/gevent/__init__.py
src/gevent/__init__.py
+1
-1
src/gevent/subprocess.py
src/gevent/subprocess.py
+1
-1
No files found.
CHANGES.rst
View file @
a904564a
...
...
@@ -6,6 +6,50 @@
.. towncrier release notes start
21.12.0 (2021-12-11)
====================
Features
--------
- Update autoconf files for Apple Silicon Macs. Note that while there
are reports of compiling gevent on Apple Silicon Macs now, this is
*not* a tested configuration. There may be some remaining issues with
CFFI on some systems as well.
See :issue:`1721`.
- Build and upload CPython 3.10 binary manylinux wheels.
Unfortunately, this required us to stop building and uploading CPython
2.7 binary manylinux wheels. Binary wheels for 2.7 continue to be
available for Windows and macOS.
See :issue:`1822`.
- Test and distribute musllinux_1_1 wheels.
See :issue:`1837`.
- Update the tested versions of PyPy2 and PyPy3. For PyPy2, there should
be no user visible changes, but for PyPy3, support has moved from
Python 3.6 to Python 3.7.
See :issue:`1843`.
Bugfixes
--------
- Try to avoid linking to two different Python runtime DLLs on Windows.
See :issue:`1814`.
- Stop compiling manylinux wheels with ``-ffast-math.`` This was
implicit in ``-Ofast``, but could alter the global state of the
process. Analysis and fix thanks to Ilya Konstantinov.
See :issue:`1820`.
- Fix hanging the interpreter on shutdown if gevent monkey patching
occurred on a non-main thread in Python 3.9.8 and above. (Note that
this is not a recommended practice.)
See :issue:`1839`.
----
21.8.0 (2021-08-05)
===================
...
...
docs/changes/1721.feature
deleted
100644 → 0
View file @
8455c2f5
Update
autoconf
files
for
Apple
Silicon
Macs.
Note
that
while
there
are
reports
of
compiling
gevent
on
Apple
Silicon
Macs
now,
this
is
*not
*
a tested configuration. There may be some remaining issues with
CFF
I
on some systems as well.
docs/changes/1814.bugfix
deleted
100644 → 0
View file @
8455c2f5
Try to avoid linking to two different Python runtime DLLs on Windows.
docs/changes/1820.bugfix
deleted
100644 → 0
View file @
8455c2f5
Stop compiling manylinux wheels with ``-ffast-math.`` This was
implicit in ``-Ofast``, but could alter the global state of the
process. Analysis and fix thanks to Ilya Konstantinov.
docs/changes/1822.feature
deleted
100644 → 0
View file @
8455c2f5
Build
and
upload
CPython
3.10
binary
manylinux
wheels.
Unfortunately,
this
required
us
to
stop
building
and
uploading
CPython
2.
7
binary manylinux wheels. Binary wheels for 2.7 continue to be
available
for
Windows
and
macOS.
docs/changes/1837.feature
deleted
100644 → 0
View file @
8455c2f5
Test
and
distribute
musllinux_1_1
wheels.
docs/changes/1839.bugfix
deleted
100644 → 0
View file @
8455c2f5
Fix hanging the interpreter on shutdown if gevent monkey patching
occurred on a non-main thread in Python 3.9.8 and above. (Note that
this is not a recommended practice.)
docs/changes/1843.feature
deleted
100644 → 0
View file @
8455c2f5
Update
the
tested
versions
of
PyPy2
and
PyPy3.
For
PyPy2,
there
should
be
no
user
visible
changes,
but
for
PyPy3,
support
has
moved
from
Python
3.6
to
Python
3.7.
src/gevent/__init__.py
View file @
a904564a
...
...
@@ -27,7 +27,7 @@ version_info = _version_info(20, 0, 0, 'dev', 0) # XXX: Remove me
#: Use ``pkg_resources.parse_version(__version__)`` or
#: ``packaging.version.Version(__version__)`` to get a machine-usable
#: value.
__version__
=
'21.
8.1.dev
0'
__version__
=
'21.
12.
0'
__all__
=
[
...
...
src/gevent/subprocess.py
View file @
a904564a
...
...
@@ -626,7 +626,7 @@ class Popen(object):
it may make many system calls and/or trips around the event loop to accomplish this).
See :issue:`1711`.
.. versionchanged::
NEXT
.. versionchanged::
21.12.0
Added the ``pipesize`` argument for compatibility with Python 3.10.
This is ignored on all platforms.
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment