Skip to content

Commit

Permalink
Updates to requirements.py to allow bootstrap on up to python 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidraker committed Apr 20, 2024
1 parent b457378 commit dca3a8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
# wheel version 0.31 has removed metadata.json file
# https://github.com/pypa/wheel/issues/195
# so sticking to 0.30 for now. Could upgrade to wheel 0.31 with code changes
option_requirements = [('pip==24.0', []), ('wheel==0.30', []), ('pyzmq==22.2.1', ['--zmq=bundled'])]
option_requirements = [('pip==24.0', []), ('wheel==0.30', []), ('pyzmq==26.0.2', ['--zmq=bundled'])]


install_requires = ['gevent==21.12.0',
'grequests==0.6.0',
'requests==2.23.0',
install_requires = ['gevent==24.2.1',
'grequests==0.7.0',
'requests==2.31.0',
'idna<3,>=2.5',
'ply==3.11',
'psutil==5.9.1',
Expand Down

0 comments on commit dca3a8d

Please sign in to comment.