missim-cli 3.2.0__tar.gz → 3.4.0__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 (31) hide show
  1. {missim_cli-3.2.0 → missim_cli-3.4.0}/PKG-INFO +1 -1
  2. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.dev.yaml +4 -0
  3. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/groups/base.py +7 -1
  4. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/PKG-INFO +1 -1
  5. {missim_cli-3.2.0 → missim_cli-3.4.0}/setup.cfg +1 -1
  6. {missim_cli-3.2.0 → missim_cli-3.4.0}/README.md +0 -0
  7. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/__init__.py +0 -0
  8. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/auth_helpers.py +0 -0
  9. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/banner.py +0 -0
  10. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/cli.py +0 -0
  11. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.cache.yaml +0 -0
  12. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.gpu.yaml +0 -0
  13. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.network-host.yaml +0 -0
  14. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.network-proxy.yaml +0 -0
  15. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.prod.yaml +0 -0
  16. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.ue_editor_nas_cache.yaml +0 -0
  17. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/docker/docker-compose.yaml +0 -0
  18. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/groups/__init__.py +0 -0
  19. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/groups/docker.py +0 -0
  20. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/groups/git.py +0 -0
  21. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/groups/image.py +0 -0
  22. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/groups/setup.py +0 -0
  23. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/helpers.py +0 -0
  24. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli/render_fbx.py +0 -0
  25. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/SOURCES.txt +0 -0
  26. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/dependency_links.txt +0 -0
  27. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/entry_points.txt +0 -0
  28. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/requires.txt +0 -0
  29. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/top_level.txt +0 -0
  30. {missim_cli-3.2.0 → missim_cli-3.4.0}/missim_cli.egg-info/zip-safe +0 -0
  31. {missim_cli-3.2.0 → missim_cli-3.4.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: missim_cli
3
- Version: 3.2.0
3
+ Version: 3.4.0
4
4
  Summary: A CLI for interacting with the MISSIM platform
5
5
  Home-page: https://github.com/Greenroom-Robotics/missim
6
6
  Author: Greenroom Robotics
@@ -51,6 +51,10 @@ services:
51
51
  secrets:
52
52
  - apt_conf
53
53
  - API_TOKEN_GITHUB
54
+ cap_add:
55
+ - SYS_PTRACE
56
+ ports:
57
+ - "1234:1234"
54
58
  volumes:
55
59
  - ./projects/missim_ue/:/home/ue4/mis_sim/
56
60
  - ./projects/:/home/ue4/Unreal Projects/
@@ -510,7 +510,10 @@ def configure():
510
510
  @click.option("--prod", type=bool, help="Run in prod mode?", default=True)
511
511
  @click.option("--gpu", type=bool, default=True, help="Reserve GPU resources for UE containers")
512
512
  @click.option("--default", is_flag=True, help="Use default values")
513
- def configure_all(mode: Mode, prod: bool, gpu: bool, default: bool): # type: ignore
513
+ @click.option(
514
+ "--smoke-test", is_flag=True, help="Configure for smoke testing (zenoh discovery, with router)"
515
+ )
516
+ def configure_all(mode: Mode, prod: bool, gpu: bool, default: bool, smoke_test: bool): # type: ignore
514
517
  """Configure all MIS-SIM settings"""
515
518
 
516
519
  if default:
@@ -518,6 +521,9 @@ def configure_all(mode: Mode, prod: bool, gpu: bool, default: bool): # type: ig
518
521
  config.mode = mode
519
522
  config.prod = prod
520
523
  config.gpu = gpu
524
+ if smoke_test:
525
+ config.discovery.type = "zenoh"
526
+ config.discovery.zenoh.with_router = True
521
527
  config_io.write(config)
522
528
  else:
523
529
  # Check if the file exists
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: missim_cli
3
- Version: 3.2.0
3
+ Version: 3.4.0
4
4
  Summary: A CLI for interacting with the MISSIM platform
5
5
  Home-page: https://github.com/Greenroom-Robotics/missim
6
6
  Author: Greenroom Robotics
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = missim_cli
3
- version = 3.2.0
3
+ version = 3.4.0
4
4
  url = https://github.com/Greenroom-Robotics/missim
5
5
  author = Greenroom Robotics
6
6
  author_email = team@greenroomrobotics.com
File without changes
File without changes
File without changes