Skip to content

Commit

Permalink
change gevent version according to python version (#1235)
Browse files Browse the repository at this point in the history
* specify cython<3.0.0

* fix typo

* specify the version

* specify the version

* specify gevent version

* bump gevent version

* test

* test

* test

* Update setup.py

* change gevent version according to python version
  • Loading branch information
liyaqin1 committed Aug 17, 2023
1 parent 665d7a4 commit b7ccc04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deploy-agent/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
install_requires = [
"requests==2.20.0",
"gevent>=1.0.2,<=1.2.2; python_version < '3'",
"gevent>=1.0.2,<=1.5.0; python_version >= '3'",
"gevent>=1.0.2,<=1.5.0; python_version < '3.8'",
"gevent==20.12.0; python_version >= '3.8'",
"lockfile==0.10.2",
"boto>=2.39.0",
"python-daemon==2.0.6",
Expand Down

0 comments on commit b7ccc04

Please sign in to comment.