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
82621940
Commit
82621940
authored
Apr 22, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparing release 20.04.0
parent
cd325719
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
57 additions
and
24 deletions
+57
-24
CHANGES.rst
CHANGES.rst
+55
-0
docs/changes/1367.misc
docs/changes/1367.misc
+0
-2
docs/changes/1555.feature
docs/changes/1555.feature
+0
-4
docs/changes/1564.bugfix
docs/changes/1564.bugfix
+0
-2
docs/changes/1569.feature
docs/changes/1569.feature
+0
-1
docs/changes/1569.removal
docs/changes/1569.removal
+0
-2
docs/changes/1570.bugfix
docs/changes/1570.bugfix
+0
-2
docs/changes/1572.bugfix
docs/changes/1572.bugfix
+0
-4
docs/changes/1580.bugfix
docs/changes/1580.bugfix
+0
-2
docs/changes/1581.bugfix
docs/changes/1581.bugfix
+0
-3
src/gevent/__init__.py
src/gevent/__init__.py
+1
-1
src/gevent/monkey.py
src/gevent/monkey.py
+1
-1
No files found.
CHANGES.rst
View file @
82621940
...
...
@@ -5,3 +5,58 @@
.. currentmodule:: gevent
.. towncrier release notes start
20.04.0 (2020-04-22)
====================
Features
--------
- Let CI (Travis and Appveyor) build and upload release wheels for
Windows, macOS and manylinux. As part of this, (a subset of) gevent's
tests can run if the standard library's ``test.support`` module has
been stripped.
See :issue:`1555`.
- Update tested PyPy version from 7.2.0 on Windows to 7.3.1.
See :issue:`1569`.
Bugfixes
--------
- Fix a spurious warning about watchers and resource leaks on libuv on
Windows. Reported by Stéphane Rainville.
See :issue:`1564`.
- Make monkey-patching properly remove ``select.epoll`` and
``select.kqueue``. Reported by Kirill Smelkov.
See :issue:`1570`.
- Make it possible to monkey-patch :mod:`contextvars` before Python 3.7
if a non-standard backport that uses the same name as the standard
library does is installed. Previously this would raise an error.
Reported by Simon Davy.
See :issue:`1572`.
- Fix destroying the libuv default loop and then using the default loop
again.
See :issue:`1580`.
- libuv loops that have watched children can now exit. Previously, the
SIGCHLD watcher kept the loop alive even if there were no longer any
watched children.
See :issue:`1581`.
Deprecations and Removals
-------------------------
- PyPy no longer uses the Python allocation functions for libuv and
libev allocations.
See :issue:`1569`.
Misc
----
- See :issue:`1367`.
----
docs/changes/1367.misc
deleted
100644 → 0
View file @
cd325719
Refactor ``known_failures.py`` to use a compact DSL instead of deeply
nested condition statements.
docs/changes/1555.feature
deleted
100644 → 0
View file @
cd325719
Let
C
I
(Travis and Appveyor) build and upload release wheels for
Windows,
macOS
and
manylinux.
As
part
of
this,
(
a
subset of) gevent's
tests
c
an
run if the standard library's ``test.support`` module has
been
stripped.
docs/changes/1564.bugfix
deleted
100644 → 0
View file @
cd325719
Fix a spurious warning about watchers and resource leaks on libuv on
Windows. Reported by Stéphane Rainville.
docs/changes/1569.feature
deleted
100644 → 0
View file @
cd325719
Update
tested
PyPy
version
from
7.2.0
on
Windows
to
7.3.1.
docs/changes/1569.removal
deleted
100644 → 0
View file @
cd325719
PyPy no longer uses the Python allocation functions for libuv and
libev allocations.
docs/changes/1570.bugfix
deleted
100644 → 0
View file @
cd325719
Make monkey-patching properly remove ``select.epoll`` and
``select.kqueue``. Reported by Kirill Smelkov.
docs/changes/1572.bugfix
deleted
100644 → 0
View file @
cd325719
Make it possible to monkey-patch :mod:`contextvars` before Python 3.7
if a non-standard backport that uses the same name as the standard
library does is installed. Previously this would raise an error.
Reported by Simon Davy.
docs/changes/1580.bugfix
deleted
100644 → 0
View file @
cd325719
Fix destroying the libuv default loop and then using the default loop
again.
docs/changes/1581.bugfix
deleted
100644 → 0
View file @
cd325719
libuv loops that have watched children can now exit. Previously, the
SIGCHLD watcher kept the loop alive even if there were no longer any
watched children.
src/gevent/__init__.py
View file @
82621940
...
...
@@ -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__
=
'20.0
.0.dev
0'
__version__
=
'20.0
4.
0'
__all__
=
[
...
...
src/gevent/monkey.py
View file @
82621940
...
...
@@ -555,7 +555,7 @@ def patch_contextvars():
and import name is available on PyPI (though this is not
recommended). If that is installed, it will be patched.
.. versionchanged::
NEXT
.. versionchanged::
20.04.0
Clarify that the backport is also patched.
"""
try
:
...
...
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