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
856a0722
Commit
856a0722
authored
Oct 31, 2022
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump to greenlet 2.0rc5
parent
6e52b740
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
.github/workflows/ci.yml
.github/workflows/ci.yml
+2
-2
pyproject.toml
pyproject.toml
+1
-1
scripts/releases/make-manylinux
scripts/releases/make-manylinux
+1
-1
setup.py
setup.py
+1
-1
No files found.
.github/workflows/ci.yml
View file @
856a0722
...
...
@@ -206,7 +206,7 @@ jobs:
pip install -q -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"'
pip install -q -U 'cffi;platform_python_implementation=="CPython"'
pip install -q -U 'cython>=3.0a9'
pip install 'greenlet>=2.0rc
4
;platform_python_implementation=="CPython"'
pip install 'greenlet>=2.0rc
5
;platform_python_implementation=="CPython"'
-
name
:
Build gevent
run
:
|
...
...
@@ -401,7 +401,7 @@ jobs:
pip install -q -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"'
pip install -q -U 'cffi;platform_python_implementation=="CPython"'
pip install -q -U 'cython>=3.0a5'
pip install 'greenlet>=2.0rc
4;
platform_python_implementation=="CPython"'
pip install 'greenlet>=2.0rc
5;
platform_python_implementation=="CPython"'
-
name
:
build libs and gevent
env
:
...
...
pyproject.toml
View file @
856a0722
...
...
@@ -26,7 +26,7 @@ requires = [
# 1.1.3 is needed for CPython 3.11.
# 2.0 is not ABI compatible with earlier releases, but with luck it won't
# have to break the ABI again.
"greenlet >= 2.0.0rc
4
; platform_python_implementation == 'CPython'"
,
"greenlet >= 2.0.0rc
5
; platform_python_implementation == 'CPython'"
,
]
[tool.towncrier]
...
...
scripts/releases/make-manylinux
View file @
856a0722
...
...
@@ -125,7 +125,7 @@ if [ -d /gevent -a -d /opt/python ]; then
# The downside is that we must install dependencies manually.
# NOTE: We can't upgrade ``wheel`` because ``auditwheel`` depends on
# it, and auditwheel is installed in one of these environments.
python
-mpip
install
-U
"cython >= 3.0a6"
cffi
'greenlet >= 2.0rc
4
'
setuptools
python
-mpip
install
-U
"cython >= 3.0a6"
cffi
'greenlet >= 2.0rc
5
'
setuptools
time
(
python setup.py bdist_wheel
)
PATH
=
"
$OPATH
"
auditwheel repair dist/gevent
*
.whl
cp
wheelhouse/gevent
*
.whl /gevent/wheelhouse
...
...
setup.py
View file @
856a0722
...
...
@@ -215,7 +215,7 @@ greenlet_requires = [
# 1.1.3 is needed for 3.11, and supports everything 1.1.0 did.
# 2.0.0 supports everything 1.1.3 did, but breaks the ABI in a way that hopefully
# won't break again.
'greenlet >= 2.0.0rc
4
; platform_python_implementation=="CPython"'
,
'greenlet >= 2.0.0rc
5
; platform_python_implementation=="CPython"'
,
]
# Note that we don't add cffi to install_requires, it's
...
...
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