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
The docker module hasn't been released under the name docker-py since 2016. Since then, there hav been many releases under the name "docker" (no "-py"). I haven't looked into this deeply, but simply changing 'docker-py>=0.3.2' to 'docker' won't work without further adjustments. (There first error I ran into was "module 'docker' has no attribute 'Client' [docker_container.py:connect:100]".) Also, it seems like we'd have to make adjustments in order to work with dockerpty.
The text was updated successfully, but these errors were encountered:
kyleam
added a commit
to kyleam/niceman
that referenced
this issue
Nov 5, 2019
The docker module hasn't been released under the name "docker-py"
since 2016 [0] and has seen many releases under the name "docker" [1].
So we've effectively been pinning the release to version 1.10.6 even
though the current version is 4.1.0.
To update to latest version, it looks like we can get by with
substituting APIClient for Client. Set the new floor to version
2.3.0, the release that introduced APIClient.
ClosesReproNim#387.
[0]: https://pypi.org/project/docker-py
[1]: https://pypi.org/project/docker
The docker module hasn't been released under the name "docker-py"
since 2016 [0] and has seen many releases under the name "docker" [1].
So we've effectively been pinning the release to version 1.10.6 even
though the current version is 4.1.0.
To update to latest version, it looks like we can get by with
substituting APIClient for Client. Set the new floor to version
2.3.0, the release that introduced APIClient.
ClosesReproNim#387.
[0]: https://pypi.org/project/docker-py
[1]: https://pypi.org/project/docker
It looks like we're relying on a pretty old and unsupported version of docker-py.
reproman/setup.py
Line 71 in c6dc43f
The docker module hasn't been released under the name docker-py since 2016. Since then, there hav been many releases under the name "docker" (no "-py"). I haven't looked into this deeply, but simply changing 'docker-py>=0.3.2' to 'docker' won't work without further adjustments. (There first error I ran into was "module 'docker' has no attribute 'Client' [docker_container.py:connect:100]".) Also, it seems like we'd have to make adjustments in order to work with dockerpty.
The text was updated successfully, but these errors were encountered: