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
{{ message }}
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
Then activate this new environment (conda activate newenv) and run within this environment make install. Do not use the standard system-wide poetry install!
Note that I fixed the poetry & poetry-core versions as the new releases are buggy and cause an error.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
🐛 Bug Report
failed to make an editable install
🔬 How To Reproduce
Steps to reproduce the behavior:
Anaconda 3.8
. there existspoetry
, but it's not used as shown belowpython-project
)setup.py
as follows:python
& in project folder, runpip install -e ./
pyproject.toml
as well as related.pre-commit-config.yaml
and.github
;pip install -e ./
again and it succeeds.Code sample
NA
Environment
Screenshots
NA
📈 Expected behavior
to create an editable install by just adding a
setup.py
file.📎 Additional context
For my specific project, an editable install fits better as it involves
pywin32
.I found a "fix" as follows:
build-backend = "poetry.core.masonry.api"
line inpyproject.toml
;pip install -e . --no-use-pep517
The text was updated successfully, but these errors were encountered: