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
9eb0b5ae
Commit
9eb0b5ae
authored
Jun 16, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparing release 20.6.2
parent
e2aed87e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
13 deletions
+32
-13
CHANGES.rst
CHANGES.rst
+31
-0
docs/changes/issue1643.bugfix
docs/changes/issue1643.bugfix
+0
-4
docs/changes/issue1645.feature
docs/changes/issue1645.feature
+0
-8
src/gevent/__init__.py
src/gevent/__init__.py
+1
-1
No files found.
CHANGES.rst
View file @
9eb0b5ae
...
...
@@ -6,6 +6,37 @@
.. towncrier release notes start
20.6.2 (2020-06-16)
===================
Features
--------
- It is now possible to build and use the embedded libuv on a Cygwin
platform.
Note that Cygwin is not an officially supported platform of upstream
libuv and is not tested by gevent, so the actual working status is
unknown, and this may bitrot in future releases.
Thanks to berkakinci for the patch.
See :issue:`issue1645`.
Bugfixes
--------
- Relax the version constraint for psutil on PyPy.
Previously it was pinned to 5.6.3 for PyPy2, except for on Windows,
where it was excluded. It is now treated the same as CPython again.
See :issue:`issue1643`.
----
20.6.1 (2020-06-10)
===================
...
...
docs/changes/issue1643.bugfix
deleted
100644 → 0
View file @
e2aed87e
Relax the version constraint for psutil on PyPy.
Previously it was pinned to 5.6.3 for PyPy2, except for on Windows,
where it was excluded. It is now treated the same as CPython again.
docs/changes/issue1645.feature
deleted
100644 → 0
View file @
e2aed87e
It
is
now
possible
to
build
and
use
the
embedded
libuv
on
a
Cygwin
platform.
Note
that
Cygwin
is
not
an
officially supported platform of upstream
libuv
and
is
not
tested
by
gevent,
so
the
actual
working
status
is
unknown,
and
this
may
bitrot
in
future
releases.
Thanks
to
berkakinci
for
the
patch.
src/gevent/__init__.py
View file @
9eb0b5ae
...
...
@@ -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.6.2
.dev0
'
__version__
=
'20.6.2'
__all__
=
[
...
...
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