Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello I came here because I have a problem using
poetry add
with a package that depends on typesentry. Read details here.It turned out that there were 2 problems:
install_requires
which is easy to fix.__version__
is loaded in a way that triggers__init__
which depends oncolorama
package which is not available at the time of installation. i.e.pip install .
is not working in a clear env, because you have to havecolorama
for it to work. This is not how it is supposed to be.I changed the way version is loaded into
setup.py
so that__init__.py
is not triggered, using guidelines from here. You may want to use different approach, but this was my take on it, I think it was the easiest one.Hope this will solve this issue.