File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ jobs:
173
173
pip install -q -U 'cython>=3.0.2'
174
174
# Use a debug version of greenlet to help catch any errors earlier.
175
175
CFLAGS="$CFLAGS -Og -g -UNDEBUG" pip install -v --no-binary :all: 'greenlet>=2.0.0;platform_python_implementation=="CPython" and python_version < "3.11"'
176
- CFLAGS="$CFLAGS -Og -g -UNDEBUG" pip install -v --no-binary :all: 'greenlet>=3.0rc2 ;platform_python_implementation=="CPython" and python_version >= "3.11"'
176
+ CFLAGS="$CFLAGS -Og -g -UNDEBUG" pip install -v --no-binary :all: 'greenlet>=3.0rc3 ;platform_python_implementation=="CPython" and python_version >= "3.11"'
177
177
178
178
- name : Build gevent (non-Mac)
179
179
if : ${{ ! startsWith(runner.os, 'Mac') }}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ requires = [
30
30
# 3.0 is ABI compatible with earlier releases, so we can switch back and
31
31
# forth between 2 and 3 without recompiling. 3.0 is required for
32
32
# Python 3.12, and it fixes some serious bugs in Python 3.11.
33
- " greenlet >= 3.0rc2 ; platform_python_implementation == 'CPython'" ,
33
+ " greenlet >= 3.0rc3 ; platform_python_implementation == 'CPython'" ,
34
34
]
35
35
36
36
[tool .towncrier ]
Original file line number Diff line number Diff line change 211
211
# 3.0 is ABI compatible and adds support for Python 3.12 (but right
212
212
# now it's RC pending additional testing, so we only require it on 3.12)
213
213
'greenlet >= 2.0.0 ; platform_python_implementation=="CPython" and python_version < "3.11"' ,
214
- 'greenlet >= 3.0rc2 ; platform_python_implementation=="CPython" and python_version >= "3.11"' ,
214
+ 'greenlet >= 3.0rc3 ; platform_python_implementation=="CPython" and python_version >= "3.11"' ,
215
215
]
216
216
217
217
# Note that we don't add cffi to install_requires, it's
You can’t perform that action at this time.
0 commit comments