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
per pypa/pipenv#4292 -- a setup.py with a package name that points at a function, e.g. find_name(), that then opens and reads a file (i.e. the value can't be determined by the AST parser), must be executed instead of returning None.
If we return None, the package will never land in the Pipfile.lock.
The text was updated successfully, but these errors were encountered:
per pypa/pipenv#4292 -- a
setup.py
with a package name that points at a function, e.g.find_name()
, that then opens and reads a file (i.e. the value can't be determined by the AST parser), must be executed instead of returning None.If we return
None
, the package will never land in thePipfile.lock
.The text was updated successfully, but these errors were encountered: