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
When in conda environment with all pymapd dependencies installed,
python setup.py develop
unnecessarily triggers installing the dependencies via pip.
As a general but possibly complicated fix is to ensure that the lists in extra_requires do not contain the available packages with proper versions.
extra_requires
A simpler fix for conda environment is as follows: if CONDA_PREFIX is in os.environ then the lists can be empty.
CONDA_PREFIX
os.environ
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When in conda environment with all pymapd dependencies installed,
unnecessarily triggers installing the dependencies via pip.
As a general but possibly complicated fix is to ensure that the lists in
extra_requires
do not contain the available packages with proper versions.A simpler fix for conda environment is as follows: if
CONDA_PREFIX
is inos.environ
then the lists can be empty.The text was updated successfully, but these errors were encountered: