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
{{ message }}
This repository was archived by the owner on Apr 21, 2025. It is now read-only.
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.
Current
setup.pyfrom 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
loadfunction (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.txtto use.. Then, if you dopip install -r requirements.txtit will go tosetup.pyand will grab deps from there.Or, simply upgrade to pyyaml 6.