vantage6 3.8.8rc1__tar.gz → 3.8.8rc3__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.

Potentially problematic release.


This version of vantage6 might be problematic. Click here for more details.

Files changed (29) hide show
  1. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/PKG-INFO +1 -1
  2. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/setup.py +1 -1
  3. vantage6-3.8.8rc3/vantage6/cli/__build__ +1 -0
  4. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/server.py +1 -1
  5. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6.egg-info/PKG-INFO +1 -1
  6. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6.egg-info/requires.txt +3 -3
  7. vantage6-3.8.8rc1/vantage6/cli/__build__ +0 -1
  8. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/setup.cfg +0 -0
  9. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/tests_cli/__init__.py +0 -0
  10. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/tests_cli/test_example.py +0 -0
  11. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/tests_cli/test_node_cli.py +0 -0
  12. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/tests_cli/test_server_cli.py +0 -0
  13. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/tests_cli/test_wizard.py +0 -0
  14. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/__init__.py +0 -0
  15. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/_version.py +0 -0
  16. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/configuration_manager.py +0 -0
  17. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/configuration_wizard.py +0 -0
  18. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/context.py +0 -0
  19. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/globals.py +0 -0
  20. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/node.py +0 -0
  21. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/rabbitmq/__init__.py +0 -0
  22. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/rabbitmq/definitions.py +0 -0
  23. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/rabbitmq/queue_manager.py +0 -0
  24. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/rabbitmq/rabbitmq.config +0 -0
  25. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6/cli/utils.py +0 -0
  26. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6.egg-info/SOURCES.txt +0 -0
  27. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6.egg-info/dependency_links.txt +0 -0
  28. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6.egg-info/entry_points.txt +0 -0
  29. {vantage6-3.8.8rc1 → vantage6-3.8.8rc3}/vantage6.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6
3
- Version: 3.8.8rc1
3
+ Version: 3.8.8rc3
4
4
  Summary: vantage6 command line interface
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.6
@@ -37,7 +37,7 @@ setup(
37
37
  install_requires=[
38
38
  'click==8.1.3',
39
39
  'colorama==0.4.6',
40
- 'docker==6.0.1',
40
+ 'docker==6.1.2',
41
41
  'ipython==8.10.0',
42
42
  'questionary==1.10.0',
43
43
  'schema==0.7.5',
@@ -0,0 +1 @@
1
+ 3
@@ -427,7 +427,7 @@ def cli_server_new(name: str, environment: str, system_folders: bool) -> None:
427
427
  if not check_config_writeable(system_folders):
428
428
  error("Your user does not have write access to all folders. Exiting")
429
429
  info(f"Create a new server using '{Fore.GREEN}vserver new "
430
- "--user{Style.RESET_ALL}' instead!")
430
+ f"--user{Style.RESET_ALL}' instead!")
431
431
  exit(1)
432
432
 
433
433
  # create config in ctx location
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6
3
- Version: 3.8.8rc1
3
+ Version: 3.8.8rc3
4
4
  Summary: vantage6 command line interface
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.6
@@ -1,12 +1,12 @@
1
1
  click==8.1.3
2
2
  colorama==0.4.6
3
- docker==6.0.1
3
+ docker==6.1.2
4
4
  ipython==8.10.0
5
5
  questionary==1.10.0
6
6
  schema==0.7.5
7
7
  SQLAlchemy==1.4.46
8
- vantage6-common==3.8.8.rc1
9
- vantage6-client==3.8.8.rc1
8
+ vantage6-common==3.8.8.rc3
9
+ vantage6-client==3.8.8.rc3
10
10
 
11
11
  [dev]
12
12
  coverage==6.4.4
@@ -1 +0,0 @@
1
- 1
File without changes