Skip to content

Commit

Permalink
deps: greenlet >= 3.0 #541
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
wookayin authored Oct 13, 2023
1 parent 4db6b28 commit 260a0b9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@

if platform.python_implementation() != 'PyPy':
# pypy already includes an implementation of the greenlet module
if sys.version_info >= (3, 12):
install_requires.append('greenlet>=3.0.0rc3')
else:
install_requires.append('greenlet')
install_requires.append('greenlet>=3.0')

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

0 comments on commit 260a0b9

Please sign in to comment.