8000 Bump to greenlet 3.0rc3 · gevent/gevent@bdc82c9 · GitHub
[go: up one dir, main page]

Skip to content

Commit bdc82c9

Browse files
committed
Bump to greenlet 3.0rc3
1 parent ca0f9cb commit bdc82c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
pip install -q -U 'cython>=3.0.2'
174174
# Use a debug version of greenlet to help catch any errors earlier.
175175
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"'
177177
178178
- name: Build gevent (non-Mac)
179179
if: ${{ ! startsWith(runner.os, 'Mac') }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ requires = [
3030
# 3.0 is ABI compatible with earlier releases, so we can switch back and
3131
# forth between 2 and 3 without recompiling. 3.0 is required for
3232
# 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'",
3434
]
3535

3636
[tool.towncrier]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
# 3.0 is ABI compatible and adds support for Python 3.12 (but right
212212
# now it's RC pending additional testing, so we only require it on 3.12)
213213
'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"',
215215
]
216216

217217
# Note that we don't add cffi to install_requires, it's

0 commit comments

Comments
 (0)
0