seto 2.2.1__tar.gz → 2.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {seto-2.2.1 → seto-2.2.2}/PKG-INFO +1 -1
  2. {seto-2.2.1 → seto-2.2.2}/pyproject.toml +1 -1
  3. {seto-2.2.1 → seto-2.2.2}/seto/core/docker.py +2 -2
  4. {seto-2.2.1 → seto-2.2.2}/LICENSE +0 -0
  5. {seto-2.2.1 → seto-2.2.2}/LICENSE_HEADER.txt +0 -0
  6. {seto-2.2.1 → seto-2.2.2}/README.md +0 -0
  7. {seto-2.2.1 → seto-2.2.2}/seto/__init__.py +0 -0
  8. {seto-2.2.1 → seto-2.2.2}/seto/__main__.py +0 -0
  9. {seto-2.2.1 → seto-2.2.2}/seto/commands/config.py +0 -0
  10. {seto-2.2.1 → seto-2.2.2}/seto/commands/deploy.py +0 -0
  11. {seto-2.2.1 → seto-2.2.2}/seto/commands/down.py +0 -0
  12. {seto-2.2.1 → seto-2.2.2}/seto/commands/mount.py +0 -0
  13. {seto-2.2.1 → seto-2.2.2}/seto/commands/setup.py +0 -0
  14. {seto-2.2.1 → seto-2.2.2}/seto/commands/umount.py +0 -0
  15. {seto-2.2.1 → seto-2.2.2}/seto/commands/volumes.py +0 -0
  16. {seto-2.2.1 → seto-2.2.2}/seto/core/command.py +0 -0
  17. {seto-2.2.1 → seto-2.2.2}/seto/core/dns.py +0 -0
  18. {seto-2.2.1 → seto-2.2.2}/seto/core/driver.py +0 -0
  19. {seto-2.2.1 → seto-2.2.2}/seto/core/network.py +0 -0
  20. {seto-2.2.1 → seto-2.2.2}/seto/core/parser.py +0 -0
  21. {seto-2.2.1 → seto-2.2.2}/seto/core/permissions.py +0 -0
  22. {seto-2.2.1 → seto-2.2.2}/seto/core/shell.py +0 -0
  23. {seto-2.2.1 → seto-2.2.2}/seto/core/swarm.py +0 -0
  24. {seto-2.2.1 → seto-2.2.2}/seto/core/traefik.py +0 -0
  25. {seto-2.2.1 → seto-2.2.2}/seto/core/volume.py +0 -0
  26. {seto-2.2.1 → seto-2.2.2}/seto/drivers/gluster.py +0 -0
  27. {seto-2.2.1 → seto-2.2.2}/seto/drivers/nfs.py +0 -0
  28. {seto-2.2.1 → seto-2.2.2}/seto/shells/local.py +0 -0
  29. {seto-2.2.1 → seto-2.2.2}/seto/shells/remote.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seto
3
- Version: 2.2.1
3
+ Version: 2.2.2
4
4
  Summary: A Docker Swarm Deployment Manager
5
5
  License: Apache 2.0
6
6
  Keywords: docker,swarm,manager
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "seto"
7
- version = "2.2.1"
7
+ version = "2.2.2"
8
8
  description = "A Docker Swarm Deployment Manager"
9
9
  keywords = ["docker", "swarm", "manager"]
10
10
  authors = ["Sébastien Demanou <demsking@gmail.com>"]
@@ -13,9 +13,9 @@
13
13
  # limitations under the License.
14
14
  # ==============================================================================
15
15
  import functools
16
+ import json
16
17
  from typing import Any
17
18
 
18
- import yaml
19
19
  from docker import DockerClient
20
20
 
21
21
  from .driver import Driver
@@ -40,7 +40,7 @@ class Docker:
40
40
 
41
41
  @property
42
42
  def resolved_config(self) -> str:
43
- return resolve_env_vars(yaml.dump(self.config))
43
+ return resolve_env_vars(json.dumps(self.config))
44
44
 
45
45
  @property
46
46
  def external_networks(self) -> list[str]:
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes