Closed hrani closed 8 months ago
The workflow may need to be updated:
python setup.py install
python -m pip install --upgrade build
python -m build
pip install .
Fixed in commit ba12ae3
The workflow may need to be updated:
python setup.py install
as per https://packaging.python.org/en/latest/tutorials/packaging-projects/, one should usepython -m pip install --upgrade build
and thenpython -m build
. If not packaging, simplypip install .
can also work.