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
PEP 518 is now supported by pip pypa/pip#4144 and it looks like that made it into releases of pip >= 9.0.2.
We should add a pyproject.toml to specify autover as a build dependency and test with pip + git clone. If that works, we can consider whether we should get rid of embed_version and simply raise an exception that can suggest upgrading pip to users trying to install from a git repo in this manner.
The text was updated successfully, but these errors were encountered:
We should add a pyproject.toml to specify autover as a build dependency and test with pip + git clone.
You're proposing to add autover as the dependency this way; if that works (i.e. works for setup.py develop, pip+git clone, etc), then would param still need to provide autover?
... then would param still need to provide autover?
I think so as you still need autover as a runtime dependency, not just as a build time dependency. Of course, our packages could depend on autover but as they depend on param anyway, they would keep getting it from there.
PEP 518 is now supported by pip pypa/pip#4144 and it looks like that made it into releases of pip >= 9.0.2.
We should add a pyproject.toml to specify autover as a build dependency and test with pip + git clone. If that works, we can consider whether we should get rid of
embed_version
and simply raise an exception that can suggest upgrading pip to users trying to install from a git repo in this manner.The text was updated successfully, but these errors were encountered: