Skip to content

Commit

Permalink
Merge pull request #3160 from schandrika/releases/9.0rc0
Browse files Browse the repository at this point in the history
fix for issue#3159 (fix for deprecated pip --install-options)
  • Loading branch information
craig8 authored Mar 27, 2024
2 parents 3177ff8 + db467aa commit 4b71690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def update(operation, verbose=None, offline=False, optional_requirements=[], rab
# option_requirements contains wheel as first entry

# Build option_requirements separately to pass install options
build_option = '--build-option' if wheeling else '--install-option'
build_option = '--build-option' if wheeling else '--config-settings'

for requirement, options in option_requirements:
args = []
Expand Down
2 changes: 1 addition & 1 deletion requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# 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 = [('wheel==0.30', []), ('pyzmq==22.2.1', ['--zmq=bundled'])]
option_requirements = [('pip==24.0', []), ('wheel==0.30', []), ('pyzmq==22.2.1', ['--zmq=bundled'])]


install_requires = ['gevent==21.12.0',
Expand Down

0 comments on commit 4b71690

Please sign in to comment.