vantage6 4.3.4rc3__py3-none-any.whl → 4.4.0rc3__py3-none-any.whl

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.

@@ -207,7 +207,7 @@ class NodeCLITest(unittest.TestCase):
207
207
  self.assertNotEqual(result.exit_code, 0)
208
208
 
209
209
  @patch("docker.DockerClient.volumes")
210
- @patch("vantage6.cli.node.start.pull_if_newer")
210
+ @patch("vantage6.cli.node.start.pull_image")
211
211
  @patch("vantage6.cli.common.decorator.get_context")
212
212
  @patch("docker.DockerClient.containers")
213
213
  @patch("vantage6.cli.node.start.check_docker_running", return_value=True)
@@ -18,7 +18,7 @@ class ServerCLITest(unittest.TestCase):
18
18
  @patch("vantage6.cli.server.start.NetworkManager")
19
19
  @patch("vantage6.cli.server.start.docker.types.Mount")
20
20
  @patch("os.makedirs")
21
- @patch("vantage6.cli.common.start.pull_if_newer")
21
+ @patch("vantage6.cli.server.start.pull_image")
22
22
  @patch("vantage6.cli.common.decorator.get_context")
23
23
  @patch("vantage6.cli.server.start.docker.from_env")
24
24
  @patch("vantage6.cli.common.start.check_docker_running", return_value=True)
@@ -91,9 +91,10 @@ class ServerCLITest(unittest.TestCase):
91
91
  @patch("docker.DockerClient.containers")
92
92
  @patch("vantage6.cli.server.import_.print_log_worker")
93
93
  @patch("vantage6.cli.server.import_.click.Path")
94
+ @patch("vantage6.cli.server.import_.pull_image")
94
95
  @patch("vantage6.cli.server.import_.check_docker_running", return_value=True)
95
96
  @patch("vantage6.cli.common.decorator.get_context")
96
- def test_import(self, context, docker_check, click_path, log, containers):
97
+ def test_import(self, context, docker_check, pull, click_path, log, containers):
97
98
  """Import entities without errors."""
98
99
  click_path.return_value = MagicMock()
99
100
 
tests_cli/test_wizard.py CHANGED
@@ -71,7 +71,15 @@ class WizardTest(unittest.TestCase):
71
71
  def test_server_wizard(self):
72
72
  with patch(f"{module_path}.q") as q:
73
73
  q.prompt.side_effect = self.prompts
74
- q.confirm.return_value.ask.side_effect = [True, True, True, True, True]
74
+ q.confirm.return_value.ask.side_effect = [
75
+ True,
76
+ True,
77
+ True,
78
+ True,
79
+ True,
80
+ True,
81
+ False,
82
+ ]
75
83
 
76
84
  config = server_configuration_questionaire("vantage6")
77
85
 
@@ -87,6 +95,7 @@ class WizardTest(unittest.TestCase):
87
95
  "vpn_server",
88
96
  "rabbitmq",
89
97
  "two_factor_auth",
98
+ "algorithm_stores",
90
99
  ]
91
100
 
92
101
  for key in keys:
vantage6/cli/_version.py CHANGED
@@ -7,7 +7,7 @@ with open(os.path.join(here, "__build__")) as fp:
7
7
  __build__ = json.load(fp)
8
8
 
9
9
  # Module version
10
- version_info = (4, 3, 4, "candidate", __build__, 0)
10
+ version_info = (4, 4, 0, "candidate", __build__, 0)
11
11
 
12
12
  # Module version stage suffix map
13
13
  _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}
@@ -42,6 +42,10 @@ def cli_algorithm_create(name: str, directory: str) -> dict:
42
42
  "Directory to put the algorithm in:", default=default_dir
43
43
  ).ask()
44
44
 
45
- run_copy(ALGORITHM_TEMPLATE_REPO, directory, data={"algorithm_name": name})
45
+ # Create the template. The `unsafe` flag is used to allow running a Python script
46
+ # after creating the template that cleans up some things.
47
+ run_copy(
48
+ ALGORITHM_TEMPLATE_REPO, directory, data={"algorithm_name": name}, unsafe=True
49
+ )
46
50
  info("Template created!")
47
51
  info(f"You can find your new algorithm in: {directory}")
@@ -4,8 +4,9 @@ from pathlib import Path
4
4
  import click
5
5
  import questionary as q
6
6
  from copier import run_update
7
+ import copier.errors
7
8
 
8
- from vantage6.cli.utils import info
9
+ from vantage6.common import info, warning
9
10
 
10
11
 
11
12
  @click.command()
@@ -17,7 +18,14 @@ from vantage6.cli.utils import info
17
18
  type=str,
18
19
  help="Directory to put the algorithm into",
19
20
  )
20
- def cli_algorithm_update(directory: str) -> dict:
21
+ @click.option(
22
+ "--change-answers",
23
+ is_flag=True,
24
+ flag_value=True,
25
+ help="Change answers to questions that were already answered",
26
+ default=False,
27
+ )
28
+ def cli_algorithm_update(directory: str, change_answers: bool) -> dict:
21
29
  """Update an algorithm template
22
30
 
23
31
  When a new version of the algorithm template is released, you can update
@@ -28,6 +36,11 @@ def cli_algorithm_update(directory: str) -> dict:
28
36
  default_dir = str(Path(os.getcwd()))
29
37
  directory = q.text("Algorithm directory:", default=default_dir).ask()
30
38
 
31
- run_update(directory, overwrite=True)
32
-
33
- info("Template updated!")
39
+ info("Updating template...")
40
+ try:
41
+ run_update(
42
+ directory, overwrite=True, skip_answered=not change_answers, unsafe=True
43
+ )
44
+ info("Template updated!")
45
+ except copier.errors.UserMessageError as exc:
46
+ warning(f"Update failed: {exc}")
@@ -2,6 +2,7 @@ import click
2
2
 
3
3
  from vantage6.common import info
4
4
  from vantage6.common.globals import APPNAME, DEFAULT_ALGO_STORE_IMAGE, InstanceType
5
+ from vantage6.common.docker.addons import pull_image
5
6
  from vantage6.cli.common.start import (
6
7
  attach_logs,
7
8
  check_for_start,
@@ -9,7 +10,6 @@ from vantage6.cli.common.start import (
9
10
  mount_config_file,
10
11
  mount_database,
11
12
  mount_source,
12
- pull_image,
13
13
  )
14
14
  from vantage6.cli.globals import AlgoStoreGlobals
15
15
  from vantage6.cli.context.algorithm_store import AlgorithmStoreContext
@@ -54,6 +54,7 @@ def cli_algo_store_start(
54
54
 
55
55
  image = get_image(image, ctx, "algorithm-store", DEFAULT_ALGO_STORE_IMAGE)
56
56
 
57
+ info("Pulling algorithm store image...")
57
58
  pull_image(docker_client, image)
58
59
 
59
60
  config_file = "/mnt/config.yaml"
@@ -11,7 +11,7 @@ from sqlalchemy.engine.url import make_url
11
11
  from vantage6.common import error, info, warning
12
12
  from vantage6.common.context import AppContext
13
13
  from vantage6.common.globals import InstanceType, APPNAME, DEFAULT_DOCKER_REGISTRY
14
- from vantage6.common.docker.addons import check_docker_running, pull_if_newer
14
+ from vantage6.common.docker.addons import check_docker_running
15
15
  from vantage6.cli.context import AlgorithmStoreContext, ServerContext
16
16
  from vantage6.cli.common.utils import print_log_worker
17
17
  from vantage6.cli.utils import check_config_name_allowed
@@ -28,6 +28,11 @@ def check_for_start(ctx: AppContext, type_: InstanceType) -> DockerClient:
28
28
  The context object
29
29
  type_ : InstanceType
30
30
  The type of instance to check for
31
+
32
+ Returns
33
+ -------
34
+ DockerClient
35
+ A Docker client instance
31
36
  """
32
37
  # will print an error if not
33
38
  check_docker_running()
@@ -83,27 +88,6 @@ def get_image(
83
88
  return image
84
89
 
85
90
 
86
- def pull_image(docker_client: DockerClient, image: str) -> None:
87
- """
88
- Pull the image if it is not already available.
89
-
90
- Parameters
91
- ----------
92
- docker : DockerClient
93
- The docker client
94
- image : str
95
- The image name
96
- """
97
- info(f"Pulling latest image '{image}'.")
98
- try:
99
- pull_if_newer(docker_client.from_env(), image)
100
- except Exception as e:
101
- warning(" ... Getting latest server image failed:")
102
- warning(f" {e}")
103
- else:
104
- info(" ... success!")
105
-
106
-
107
91
  def mount_config_file(ctx: AppContext, config_file: str) -> list[docker.types.Mount]:
108
92
  """
109
93
  Mount the config file in the container.
@@ -50,6 +50,7 @@ class NodeConfiguration(Configuration):
50
50
  "encryption": {"enabled": bool, Optional("private_key"): Use(str)},
51
51
  Optional("node_extra_env"): dict,
52
52
  Optional("node_extra_mounts"): [str],
53
+ Optional("node_extra_hosts"): dict,
53
54
  }
54
55
 
55
56
 
@@ -371,6 +371,28 @@ def server_configuration_questionaire(instance_name: str) -> dict:
371
371
  "start_with_server": run_rabbit_locally,
372
372
  }
373
373
 
374
+ # add algorithm stores to this server
375
+ is_add_community_store = q.confirm(
376
+ "Do you want to make the algorithms from the community algorithm store "
377
+ "available to your users?"
378
+ ).ask()
379
+ algorithm_stores = []
380
+ if is_add_community_store:
381
+ algorithm_stores.append(
382
+ {"name": "Community store", "url": "https://store.cotopaxi.vantage6.ai"}
383
+ )
384
+ add_more_stores = q.confirm(
385
+ "Do you want to add more algorithm stores?", default=False
386
+ ).ask()
387
+ while add_more_stores:
388
+ store_name = q.text(message="Enter the name of the store:").ask()
389
+ store_url = q.text(message="Enter the URL of the store:").ask()
390
+ algorithm_stores.append({"name": store_name, "url": store_url})
391
+ add_more_stores = q.confirm(
392
+ "Do you want to add more algorithm stores?", default=False
393
+ ).ask()
394
+ config["algorithm_stores"] = algorithm_stores
395
+
374
396
  return config
375
397
 
376
398
 
@@ -9,6 +9,7 @@ import docker
9
9
  from colorama import Fore, Style
10
10
 
11
11
  from vantage6.common import warning, error, info, debug, get_database_config
12
+ from vantage6.common.docker.addons import pull_image
12
13
  from vantage6.common.globals import (
13
14
  APPNAME,
14
15
  DEFAULT_DOCKER_REGISTRY,
@@ -17,7 +18,6 @@ from vantage6.common.globals import (
17
18
  InstanceType,
18
19
  )
19
20
  from vantage6.common.docker.addons import (
20
- pull_if_newer,
21
21
  remove_container_if_exists,
22
22
  check_docker_running,
23
23
  )
@@ -135,17 +135,7 @@ def cli_node_start(
135
135
  image = f"{DEFAULT_DOCKER_REGISTRY}/{DEFAULT_NODE_IMAGE}"
136
136
 
137
137
  info(f"Pulling latest node image '{image}'")
138
- try:
139
- # docker_client.images.pull(image)
140
- pull_if_newer(docker.from_env(), image)
141
-
142
- except Exception as e:
143
- warning(" ... Getting latest node image failed:")
144
- warning(f" {e}")
145
- else:
146
- info(" ... success!")
147
-
148
- info("Creating Docker data volume")
138
+ pull_image(docker_client, image)
149
139
 
150
140
  data_volume = docker_client.volumes.create(ctx.docker_volume_name)
151
141
  vpn_volume = docker_client.volumes.create(ctx.docker_vpn_volume_name)
@@ -294,6 +284,9 @@ def cli_node_start(
294
284
  exit(1)
295
285
  env.update(extra_env)
296
286
 
287
+ # Add extra hosts to the environment
288
+ extra_hosts = ctx.config.get("node_extra_hosts", {})
289
+
297
290
  remove_container_if_exists(
298
291
  docker_client=docker_client, name=ctx.docker_container_name
299
292
  )
@@ -313,6 +306,7 @@ def cli_node_start(
313
306
  name=ctx.docker_container_name,
314
307
  auto_remove=not keep,
315
308
  tty=True,
309
+ extra_hosts=extra_hosts,
316
310
  )
317
311
 
318
312
  info("Node container was successfully started!")
@@ -7,7 +7,7 @@ from sqlalchemy.engine.url import make_url
7
7
  from vantage6.cli.globals import ServerGlobals
8
8
 
9
9
  from vantage6.common import info, warning
10
- from vantage6.common.docker.addons import check_docker_running
10
+ from vantage6.common.docker.addons import check_docker_running, pull_image
11
11
  from vantage6.common.globals import (
12
12
  APPNAME,
13
13
  DEFAULT_DOCKER_REGISTRY,
@@ -77,13 +77,7 @@ def cli_server_import(
77
77
  "image", f"{DEFAULT_DOCKER_REGISTRY}/{DEFAULT_SERVER_IMAGE}"
78
78
  )
79
79
  info(f"Pulling latest server image '{image}'.")
80
- try:
81
- docker_client.images.pull(image)
82
- except Exception as e:
83
- warning(" ... Getting latest node image failed:")
84
- warning(f" {e}")
85
- else:
86
- info(" ... success!")
80
+ pull_image(docker_client, image)
87
81
 
88
82
  info("Creating mounts")
89
83
  mounts = [
@@ -4,6 +4,7 @@ from docker.client import DockerClient
4
4
 
5
5
  from vantage6.common import info, warning, error
6
6
  from vantage6.common.docker.network_manager import NetworkManager
7
+ from vantage6.common.docker.addons import pull_image
7
8
  from vantage6.common.globals import (
8
9
  APPNAME,
9
10
  DEFAULT_SERVER_IMAGE,
@@ -22,7 +23,6 @@ from vantage6.cli.common.start import (
22
23
  get_image,
23
24
  mount_database,
24
25
  mount_source,
25
- pull_image,
26
26
  )
27
27
 
28
28
 
@@ -90,6 +90,7 @@ def cli_server_start(
90
90
  # check that log directory exists - or create it
91
91
  ctx.log_dir.mkdir(parents=True, exist_ok=True)
92
92
 
93
+ info("Pulling server image...")
93
94
  pull_image(docker_client, image)
94
95
 
95
96
  info("Creating mounts")
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6
3
- Version: 4.3.4rc3
3
+ Version: 4.4.0rc3
4
4
  Summary: vantage6 command line interface
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
8
  Requires-Dist: click ==8.1.3
9
9
  Requires-Dist: colorama ==0.4.6
10
- Requires-Dist: copier ==8.3.0
10
+ Requires-Dist: copier ==9.2.0
11
11
  Requires-Dist: docker ==6.1.2
12
12
  Requires-Dist: ipython ==8.10.0
13
13
  Requires-Dist: jinja2 ==3.1.3
@@ -15,8 +15,8 @@ Requires-Dist: questionary ==1.10.0
15
15
  Requires-Dist: rich ==13.5.2
16
16
  Requires-Dist: schema ==0.7.5
17
17
  Requires-Dist: SQLAlchemy ==1.4.46
18
- Requires-Dist: vantage6-common ==4.3.4rc3
19
- Requires-Dist: vantage6-client ==4.3.4rc3
18
+ Requires-Dist: vantage6-common ==4.4.0rc3
19
+ Requires-Dist: vantage6-client ==4.4.0rc3
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: coverage ==6.4.4 ; extra == 'dev'
22
22
  Requires-Dist: black ; extra == 'dev'
@@ -1,26 +1,26 @@
1
1
  tests_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  tests_cli/test_example.py,sha256=0fw_v-lgZEacshWSDwLNyLMA1_xc48bKUGM3ll-n1L0,146
3
- tests_cli/test_node_cli.py,sha256=q8WYCcjZnupeM_eJV84AHuNZgy9TMI-EYhmKsgfIzWw,15940
4
- tests_cli/test_server_cli.py,sha256=eGJx_XHzfcYlJC6ytc8tHu6nxkr9FqKws-lovp2WFks,5801
5
- tests_cli/test_wizard.py,sha256=H8fhw4uh_o4Q4Yl5SQsIdZGbqaWa8jUBh4lnEaRsDio,4209
3
+ tests_cli/test_node_cli.py,sha256=izMUo9r5GjIvXnDjPtaQTQtd9mbb14Z1HFTgobxLmk4,15937
4
+ tests_cli/test_server_cli.py,sha256=nilQYLV4GuKdNaYRaMO5y13h6P3mw8Dvvf8H84RS43I,5857
5
+ tests_cli/test_wizard.py,sha256=NPl3Kp6_Et0GatLfD-p5LagMbkFwEx-vHiOgKoVvxDM,4385
6
6
  vantage6/cli/__build__,sha256=TgdAhWK-24tgzgXB3s_jrRa3IjCWfeAfZAt-Rym0n84,1
7
7
  vantage6/cli/__init__.py,sha256=dEbhLHe9VfU3otY3CQkMVrj39uPGWjqzAvHW2B2Flgs,62
8
- vantage6/cli/_version.py,sha256=LI5cmkhpJyBFqJ0QilBAevJ2thu33fFjsu7vPj1EUmQ,700
8
+ vantage6/cli/_version.py,sha256=3tutpIgrakq3Vbnxn8a1YQMsORbHRO3oJvEbbhNhcVc,700
9
9
  vantage6/cli/cli.py,sha256=b5Gvhn4PL4UWShAJB5lHOf37Q_VRUw3UMNgDECZuHHM,5945
10
- vantage6/cli/configuration_manager.py,sha256=KQvD_XLRH0sNWsKB38WoX7DCY47moD1eDaprl-P4N1M,3544
11
- vantage6/cli/configuration_wizard.py,sha256=nWG5BSAWbCGEm1WKMrefXv6nyOF2l7-WAfqHp82zsRQ,17022
10
+ vantage6/cli/configuration_manager.py,sha256=cN4tQpQjLG5GaGrsjEP-5ed_LqvPApIkNkM1J6ai3n0,3588
11
+ vantage6/cli/configuration_wizard.py,sha256=9dfAnBWsvxEEm2HX1_lUURSbSvFoc6d8YkoUYXKDqcI,17949
12
12
  vantage6/cli/globals.py,sha256=-d-y-ASioIMhvzVxNATyFOs5cKXGkiWf_75gqiT2B-M,1642
13
13
  vantage6/cli/utils.py,sha256=8_PZeihjopYXQU10gMwIKr87yDAq-_z2LKi0BcdhNEc,2365
14
- vantage6/cli/algorithm/create.py,sha256=xdQGVhpIdqkOXLaVBB8Jc1Q9SbsWtR8KiYIfqH8ww0I,1453
15
- vantage6/cli/algorithm/update.py,sha256=t2JgJZohYBoVRsIx9er2tKO1yQnzanEJkIEm65XaQqc,800
14
+ vantage6/cli/algorithm/create.py,sha256=2Ks0JnWNldsn9Eg2h_lqn-yIMaJ-OYs-B3cv58tCiIs,1628
15
+ vantage6/cli/algorithm/update.py,sha256=qN1YzUK5oiBvDepQOvUGpSVxf_eGaD1DRjh522ythE8,1224
16
16
  vantage6/cli/algostore/attach.py,sha256=Gr5Zb320cMdAOOpNbhx459M1YlI9qaCjt8YlSm-wMOQ,1135
17
17
  vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
18
18
  vantage6/cli/algostore/list.py,sha256=owBrU52ANp8oE68Rk1Hhd6yNYqWX-7uREtmCok_wndg,417
19
19
  vantage6/cli/algostore/new.py,sha256=9CMYBjHyXPIhOx7wtkFf99-6EHSTG70MRdg8m8VtMUg,2009
20
- vantage6/cli/algostore/start.py,sha256=UTtw6Q8fNXn4x_JtH2cdQ2V78afSxsQxFtAL9EmAVZA,3099
20
+ vantage6/cli/algostore/start.py,sha256=9ksdA0kg5fXa5pCUtRqgGmgk33hT-deWf9JMq_-GeZM,3181
21
21
  vantage6/cli/algostore/stop.py,sha256=a0kGU1i2DUthpPaM2yVkFkz3SUCQwA4aVMyEp3Z1LgI,1835
22
22
  vantage6/cli/common/decorator.py,sha256=7Iwlcc_ekgXJco4tNjEV79ul43Q28OrieiGkvDBeGeE,3625
23
- vantage6/cli/common/start.py,sha256=BvBV3VPxgltXLFaP4r9Fq5wUfRhbHFmEep2WQ9OxR18,7028
23
+ vantage6/cli/common/start.py,sha256=x5kVVWNinb5m8UlYy6bzmQrqwAO7F2HA8jDZ64cOUVM,6567
24
24
  vantage6/cli/common/utils.py,sha256=2zp8KfFCNQLfDAhI8pCv35d6hc6xVaBhPyLfwWvJsm8,3992
25
25
  vantage6/cli/context/__init__.py,sha256=e8rfY2tCyu6_SLQ-rbVzEHkDtmbnGCZRHFN_HH-2bnA,2683
26
26
  vantage6/cli/context/algorithm_store.py,sha256=IyQ8MaaAPI3V73R0NBp3XMJSqYwc0RF83EeILmvuZhY,4063
@@ -39,7 +39,7 @@ vantage6/cli/node/list.py,sha256=_WZ8EBIEUlzFhVp3cR2MK5FUuQicMEZHhD8npMwKSpM,166
39
39
  vantage6/cli/node/new.py,sha256=C-ZHQOiOtslOy6mF-G-MuR5E_65GKJW7L4FxxrKojUg,1923
40
40
  vantage6/cli/node/remove.py,sha256=9pBWKF1YtvT6j7fDOKAEkGeT57JpJQgHa3uLorA5e4s,3553
41
41
  vantage6/cli/node/set_api_key.py,sha256=IX07QwpTGefRC92lqm34HX9xThRVcXl5DcWSLt1Ro6w,1747
42
- vantage6/cli/node/start.py,sha256=z-qflABYEqemq3abXb-tALTGwEgMO672Z4xcr2ItjFU,11986
42
+ vantage6/cli/node/start.py,sha256=Cr1U4DRqT1PqnetCfc4UD4fXMc5QPsFUNhTPpNuVYHk,11893
43
43
  vantage6/cli/node/stop.py,sha256=nassaUq5qVuyRdoNrP_PAbq-l-X1tKUU_UwlYx08e54,3946
44
44
  vantage6/cli/node/version.py,sha256=eYJ4ayQsEsHPL00V88UY1LhmlnQCzF-Te4lrw4SFbHQ,1836
45
45
  vantage6/cli/node/common/__init__.py,sha256=pketeJOFViQIPpa9nCNe-q_6Mb55BJ2R2k_2jMQOeX4,2862
@@ -49,12 +49,12 @@ vantage6/cli/rabbitmq/queue_manager.py,sha256=QurvkbgtRUUBSv_XggnLEpvi33oeFuwB7a
49
49
  vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
50
50
  vantage6/cli/server/attach.py,sha256=ov5wJ0veZLKQTam-gBka5lDxcrmHscFZgHV1qFQkXZw,2003
51
51
  vantage6/cli/server/files.py,sha256=LJhFyYHcEnCgFhVAM-lX6_EnfhMJ7YPdN21kVIpmwkc,507
52
- vantage6/cli/server/import_.py,sha256=qPM2R2_jw9HvZ6U26xDHtkXvHUddeE6D4Isu9bnBV9M,4667
52
+ vantage6/cli/server/import_.py,sha256=7qIBG_Z4ZTR-s2FlNQOFZ3i8Tvre-mgqH7RTRcEtW1c,4512
53
53
  vantage6/cli/server/list.py,sha256=qxBaUFmkP2tNNo9cuZB5OsVg3KD_c9KJDSTC4cxuUOM,404
54
54
  vantage6/cli/server/new.py,sha256=SGOQXQDNg9ihnPpmJCDTQ-Yn2GkDhEu84dtsQ3v5Pq4,1978
55
55
  vantage6/cli/server/remove.py,sha256=2Zjs8Aq3XYNpeaGr5eSJmPCnxbYlyyEQPKSdPaJnAF4,1214
56
56
  vantage6/cli/server/shell.py,sha256=9b_koFmBQRQYIK57usm75hZAaIF4msicLTu55dYHlzM,1583
57
- vantage6/cli/server/start.py,sha256=1060ZBES8MQwLOsPb664q-wv-wNtWycNtKn-TrO5G54,7650
57
+ vantage6/cli/server/start.py,sha256=TlPSM88xkGdOzP0bz759J6ahFScAUHnTYtAn6dbMwTI,7723
58
58
  vantage6/cli/server/stop.py,sha256=A3io-Gopm4vjOfOZYYFze8LQKFtvZBaHx99C_ULnPRk,4018
59
59
  vantage6/cli/server/version.py,sha256=AUYp0CJBnYF8tD3HXqE7kM0RycXipjOYEDkraswUlaA,1306
60
60
  vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
@@ -64,8 +64,8 @@ vantage6/cli/template/server_import_config.j2,sha256=PRB0ym_FYjx9vhkmY9C0xzlv_85
64
64
  vantage6/cli/test/feature_tester.py,sha256=vTmJrqjA6J_GFWvZDmin4Nx1AO2Mhy21YacTr2vZi2U,2497
65
65
  vantage6/cli/test/integration_test.py,sha256=DT3qjl1lq7nVBflT5ed1Yu2aNT1cwHCqh8_hafi4e2k,3802
66
66
  vantage6/cli/test/common/diagnostic_runner.py,sha256=x_4ikihgoSTKI914pqlgVziBSg5LpV6MheO6O_GBCeA,6657
67
- vantage6-4.3.4rc3.dist-info/METADATA,sha256=b1d1ZipZx0K7gm-P4mZcyiAzZrpSX4cwKxWgsxAWvvk,10462
68
- vantage6-4.3.4rc3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
- vantage6-4.3.4rc3.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
70
- vantage6-4.3.4rc3.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
71
- vantage6-4.3.4rc3.dist-info/RECORD,,
67
+ vantage6-4.4.0rc3.dist-info/METADATA,sha256=W92rDgPxODh3g8jmVWJRtdP-f8-pZhDthV4anwE2P8o,10462
68
+ vantage6-4.4.0rc3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
69
+ vantage6-4.4.0rc3.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
70
+ vantage6-4.4.0rc3.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
71
+ vantage6-4.4.0rc3.dist-info/RECORD,,