Commit 856a0722 authored by Jason Madden's avatar Jason Madden

Bump to greenlet 2.0rc5

parent 6e52b740
...@@ -206,7 +206,7 @@ jobs: ...@@ -206,7 +206,7 @@ jobs:
pip install -q -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"' 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 'cffi;platform_python_implementation=="CPython"'
pip install -q -U 'cython>=3.0a9' pip install -q -U 'cython>=3.0a9'
pip install 'greenlet>=2.0rc4 ;platform_python_implementation=="CPython"' pip install 'greenlet>=2.0rc5 ;platform_python_implementation=="CPython"'
- name: Build gevent - name: Build gevent
run: | run: |
...@@ -401,7 +401,7 @@ jobs: ...@@ -401,7 +401,7 @@ jobs:
pip install -q -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"' 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 'cffi;platform_python_implementation=="CPython"'
pip install -q -U 'cython>=3.0a5' pip install -q -U 'cython>=3.0a5'
pip install 'greenlet>=2.0rc4;platform_python_implementation=="CPython"' pip install 'greenlet>=2.0rc5; platform_python_implementation=="CPython"'
- name: build libs and gevent - name: build libs and gevent
env: env:
......
...@@ -26,7 +26,7 @@ requires = [ ...@@ -26,7 +26,7 @@ requires = [
# 1.1.3 is needed for CPython 3.11. # 1.1.3 is needed for CPython 3.11.
# 2.0 is not ABI compatible with earlier releases, but with luck it won't # 2.0 is not ABI compatible with earlier releases, but with luck it won't
# have to break the ABI again. # have to break the ABI again.
"greenlet >= 2.0.0rc4 ; platform_python_implementation == 'CPython'", "greenlet >= 2.0.0rc5 ; platform_python_implementation == 'CPython'",
] ]
[tool.towncrier] [tool.towncrier]
......
...@@ -125,7 +125,7 @@ if [ -d /gevent -a -d /opt/python ]; then ...@@ -125,7 +125,7 @@ if [ -d /gevent -a -d /opt/python ]; then
# The downside is that we must install dependencies manually. # The downside is that we must install dependencies manually.
# NOTE: We can't upgrade ``wheel`` because ``auditwheel`` depends on # NOTE: We can't upgrade ``wheel`` because ``auditwheel`` depends on
# it, and auditwheel is installed in one of these environments. # it, and auditwheel is installed in one of these environments.
python -mpip install -U "cython >= 3.0a6" cffi 'greenlet >= 2.0rc4' setuptools python -mpip install -U "cython >= 3.0a6" cffi 'greenlet >= 2.0rc5' setuptools
time (python setup.py bdist_wheel) time (python setup.py bdist_wheel)
PATH="$OPATH" auditwheel repair dist/gevent*.whl PATH="$OPATH" auditwheel repair dist/gevent*.whl
cp wheelhouse/gevent*.whl /gevent/wheelhouse cp wheelhouse/gevent*.whl /gevent/wheelhouse
......
...@@ -215,7 +215,7 @@ greenlet_requires = [ ...@@ -215,7 +215,7 @@ greenlet_requires = [
# 1.1.3 is needed for 3.11, and supports everything 1.1.0 did. # 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 # 2.0.0 supports everything 1.1.3 did, but breaks the ABI in a way that hopefully
# won't break again. # won't break again.
'greenlet >= 2.0.0rc4 ; platform_python_implementation=="CPython"', 'greenlet >= 2.0.0rc5 ; platform_python_implementation=="CPython"',
] ]
# Note that we don't add cffi to install_requires, it's # Note that we don't add cffi to install_requires, it's
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment