[Python-modules-commits] [python-docker] branch upstream updated (49556cb -> 5d8d456)
Ondřej Nový
onovy at moszumanska.debian.org
Fri Oct 7 21:31:53 UTC 2016
This is an automated email from the git hooks/post-receive script.
onovy pushed a change to branch upstream
in repository python-docker.
from 49556cb Import python-docker_1.9.0.orig.tar.gz
new 5d8d456 Import python-docker_1.10.3.orig.tar.gz
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
LICENSE | 13 +-
MANIFEST.in | 1 +
PKG-INFO | 2 +-
docker/__init__.py | 14 --
docker/api/__init__.py | 4 +-
docker/api/build.py | 6 +-
docker/api/container.py | 25 ++-
docker/api/exec_api.py | 14 +-
docker/api/image.py | 216 ++++++++++++-------------
docker/api/network.py | 35 +++-
docker/api/service.py | 105 ++++++++++++
docker/api/swarm.py | 78 +++++++++
docker/api/volume.py | 13 +-
docker/auth/auth.py | 98 ++++++++---
docker/client.py | 70 +++++---
docker/constants.py | 3 +-
docker/errors.py | 13 --
docker/transport/npipeconn.py | 10 +-
docker/transport/npipesocket.py | 2 +-
docker/transport/unixconn.py | 33 ++--
docker/types/__init__.py | 7 +
docker/types/base.py | 7 +
docker/{utils/types.py => types/containers.py} | 8 +-
docker/types/services.py | 181 +++++++++++++++++++++
docker/types/swarm.py | 40 +++++
docker/utils/__init__.py | 14 +-
docker/utils/decorators.py | 4 +-
docker/utils/socket.py | 68 ++++++++
docker/utils/types.py | 97 +----------
docker/utils/utils.py | 145 ++++++++++++-----
docker/version.py | 2 +-
docker_py.egg-info/PKG-INFO | 2 +-
docker_py.egg-info/SOURCES.txt | 10 ++
docker_py.egg-info/requires.txt | 3 +-
requirements.txt | 3 +-
setup.cfg | 3 +
setup.py | 6 +-
tests/helpers.py | 55 -------
tests/integration/container_test.py | 48 ++++--
tests/integration/exec_test.py | 28 +---
tests/integration/image_test.py | 42 +++++
tests/integration/network_test.py | 78 ++++++++-
tests/integration/service_test.py | 189 ++++++++++++++++++++++
tests/integration/swarm_test.py | 145 +++++++++++++++++
tests/unit/api_test.py | 73 ++++++---
tests/unit/auth_test.py | 26 ++-
tests/unit/build_test.py | 61 ++++++-
tests/unit/client_test.py | 8 +
tests/unit/container_test.py | 117 +++++++++++++-
tests/unit/exec_test.py | 32 +++-
tests/unit/fake_api.py | 50 +-----
tests/unit/image_test.py | 26 +++
tests/unit/network_test.py | 2 +-
tests/unit/utils_test.py | 96 ++++++++++-
tests/unit/volume_test.py | 16 ++
55 files changed, 1882 insertions(+), 565 deletions(-)
create mode 100644 docker/api/service.py
create mode 100644 docker/api/swarm.py
create mode 100644 docker/types/__init__.py
create mode 100644 docker/types/base.py
copy docker/{utils/types.py => types/containers.py} (94%)
create mode 100644 docker/types/services.py
create mode 100644 docker/types/swarm.py
create mode 100644 docker/utils/socket.py
create mode 100644 tests/integration/service_test.py
create mode 100644 tests/integration/swarm_test.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-docker.git
More information about the Python-modules-commits
mailing list