Skip to content

Commit 260a0b9

Browse files
authored
deps: greenlet >= 3.0 #541
Greenlet 3.0 has been released including full python 3.12 support. It also works well with older python versions, so we can now have the dependency `greenlet >= 3.0`.
1 parent 4db6b28 commit 260a0b9

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@
2424

2525
if platform.python_implementation() != 'PyPy':
2626
# pypy already includes an implementation of the greenlet module
27-
if sys.version_info >= (3, 12):
28-
install_requires.append('greenlet>=3.0.0rc3')
29-
else:
30-
install_requires.append('greenlet')
27+
install_requires.append('greenlet>=3.0')
3128

3229
if sys.version_info < (3, 8):
3330
install_requires.append('typing-extensions')

0 commit comments

Comments
 (0)