We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this a BUG REPORT or FEATURE REQUEST?:
/kind bug
What happened:
setup.py imports git_release module which imports requests before this latter could actually be installed as specified by install_requires:
setup.py
git_release
requests
install_requires
ormb/extern-sdk/python/setup.py
Lines 33 to 35 in 0aae49a
leading to installation failures of ORMB python sdk on systems that don't have the requests package pre-installed
What you expected to happen:
ORMB python sdk installation should not require pre-installed packages
How to reproduce it (as minimally and precisely as possible):
Create a virtual environment without installing requests and then pip install ormb
pip install ormb
Anything else we need to know?:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is this a BUG REPORT or FEATURE REQUEST?:
/kind bug
What happened:
setup.py
importsgit_release
module which importsrequests
before this latter could actually be installed as specified byinstall_requires
:ormb/extern-sdk/python/setup.py
Lines 33 to 35 in 0aae49a
leading to installation failures of ORMB python sdk on systems that don't have the
requests
package pre-installedWhat you expected to happen:
ORMB python sdk installation should not require pre-installed packages
How to reproduce it (as minimally and precisely as possible):
Create a virtual environment without installing requests and then
pip install ormb
Anything else we need to know?:
The text was updated successfully, but these errors were encountered: