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
but the $(dependency) variable is undefined. Running pip then crashes (after activating the venv, which isn't done like in the build command):
pip install --upgrade ; pip freeze > requirements.txt
ERROR: You must give at least one requirement to install (see "pip help install")
I also find the in-place updating of requirements a bit unfortunate. It perpetuates dependencies even if they're not used anymore because the primary/transient distinction gets lost. A cleaner way would be to have a file requirements.in:
I had a similar issue but via workflow actions
As an interim workaround I changed my requirements.txt to a previously (known stable, at least for me) generated file requirements.txt
major version changes in requirements.txt from previous stable to new generated...
wonder if there's any breaking changes in those deps that's causing the issue.
on a side note, also noticed exceptiongroup got removed in the new generated req txt
The Makefile contains
googlefonts-project-template/Makefile
Line 52 in d66be4c
but the
$(dependency)
variable is undefined. Running pip then crashes (after activating the venv, which isn't done like in the build command):I also find the in-place updating of requirements a bit unfortunate. It perpetuates dependencies even if they're not used anymore because the primary/transient distinction gets lost. A cleaner way would be to have a file requirements.in:
and use
pip-compile requirements.in
(https://github.com/jazzband/pip-tools) to generate the actual requirements.txt with all pinned deps.The text was updated successfully, but these errors were encountered: