You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Installing the Pyvolt package in an up-to-date environment and executing one of the example scripts leads to an error.
This is caused by changes in Numpy that has removed support for numpy internal datatypes (np.int, np.complex etc.) and replaced them with Python default datatypes.
To avoid this problem in the future Versions should be pinned.
While at it the project could/should be transitioned to the currents standard of PEP621 for project metadata (see e. g. Setuptools explaination
To Reproduce
Steps to reproduce the behavior:
Pull repo and cd into it
(create venv)
pip install .
python examples/quickstart/run_nv_powerflow.py
The text was updated successfully, but these errors were encountered:
Describe the bug
Installing the Pyvolt package in an up-to-date environment and executing one of the example scripts leads to an error.
This is caused by changes in Numpy that has removed support for numpy internal datatypes (np.int, np.complex etc.) and replaced them with Python default datatypes.
To avoid this problem in the future Versions should be pinned.
While at it the project could/should be transitioned to the currents standard of PEP621 for project metadata (see e. g. Setuptools explaination
To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: