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
Version 6 made breaking change in load function (added mandatory Loader argument), so this package does not work if you just install pip install dockermake.
Proposal to fix is to freeze versions in setup.py, and in requirements.txt to use .. Then, if you do pip install -r requirements.txt it will go to setup.py and will grab deps from there.
Or, simply upgrade to pyyaml 6.
The text was updated successfully, but these errors were encountered:
Warchant
added a commit
to Warchant/DockerMake
that referenced
this issue
Oct 20, 2022
Current
setup.py
from master https://github.com/avirshup/DockerMake/blob/master/setup.py#L19 defines dependency:pyyaml >= 5
. Which is now PyYAML 6.Version 6 made breaking change in
load
function (added mandatory Loader argument), so this package does not work if you just installpip install dockermake
.Proposal to fix is to freeze versions in
setup.py
, and inrequirements.txt
to use.
. Then, if you dopip install -r requirements.txt
it will go tosetup.py
and will grab deps from there.Or, simply upgrade to pyyaml 6.
The text was updated successfully, but these errors were encountered: