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
https://github.com/watertap-org/watertap/actions/runs/11639789243/job/32517136023
With the first installation step (pip install -r requirements-dev.txt), numpy 2.0.2 gets installed:
pip install -r requirements-dev.txt
numpy 2.0.2
Then, with the next step conda install -c conda-forge cyipopt, numpy 1.22.3 gets installed:
conda install -c conda-forge cyipopt
numpy 1.22.3
However, surprisingly, displaying the list of installed Conda packages shows numpy 2.0.2...
...while running pip list shows numpy 1.22.3:
pip list
cyipopt
conda-forge
The text was updated successfully, but these errors were encountered:
Empty commit to see if watertap-org#1514 applies to main
dd99ed8
Address CI failures described in #1514 (#1515)
def2a3d
* Empty commit to see if #1514 applies to main * Try using miniforge to consistently use conda-forge
lbianchi-lbl
Successfully merging a pull request may close this issue.
https://github.com/watertap-org/watertap/actions/runs/11639789243/job/32517136023
What we know
What's going on with the NumPy version?
With the first installation step (
pip install -r requirements-dev.txt
),numpy 2.0.2
gets installed:Then, with the next step
conda install -c conda-forge cyipopt
,numpy 1.22.3
gets installed:However, surprisingly, displaying the list of installed Conda packages shows
numpy 2.0.2
......while running
pip list
showsnumpy 1.22.3
:Open questions
cyipopt
throughconda-forge
?The text was updated successfully, but these errors were encountered: