luckyrobots 0.1.65__tar.gz → 0.1.66__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 (23) hide show
  1. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/PKG-INFO +3 -1
  2. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/README.md +2 -0
  3. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/pyproject.toml +1 -1
  4. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/core/luckyrobots.py +2 -0
  5. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/.gitignore +0 -0
  6. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/LICENSE +0 -0
  7. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/__init__.py +0 -0
  8. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/config/__init__.py +0 -0
  9. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/config/robots.yaml +0 -0
  10. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/core/manager.py +0 -0
  11. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/core/models.py +0 -0
  12. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/core/node.py +0 -0
  13. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/message/__init__.py +0 -0
  14. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/message/pubsub.py +0 -0
  15. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/message/srv/client.py +0 -0
  16. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/message/srv/service.py +0 -0
  17. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/message/srv/types.py +0 -0
  18. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/message/transporter.py +0 -0
  19. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/utils/check_updates.py +0 -0
  20. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/utils/download.py +0 -0
  21. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/utils/event_loop.py +0 -0
  22. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/utils/helpers.py +0 -0
  23. {luckyrobots-0.1.65 → luckyrobots-0.1.66}/src/luckyrobots/utils/sim_manager.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: luckyrobots
3
- Version: 0.1.65
3
+ Version: 0.1.66
4
4
  Summary: Robotics-AI Training in Hyperrealistic Game Environments
5
5
  Project-URL: Homepage, https://github.com/luckyrobots/luckyrobots
6
6
  Project-URL: Bug Tracker, https://github.com/luckyrobots/luckyrobots/issues
@@ -42,11 +42,13 @@ Description-Content-Type: text/markdown
42
42
  Infinite synthetic data generation for embodied AI
43
43
  </p>
44
44
 
45
+ <!--
45
46
  <p align="center">
46
47
  <a href="https://luckyrobots.github.io/ReleaseV0.1/" target="_blank">
47
48
  <img src="https://img.shields.io/badge/Explore_V0.1-Get_Started-grey?style=for-the-badge&labelColor=grey&color=blue" alt="Get Started" />
48
49
  </a>
49
50
  </p>
51
+ -->
50
52
 
51
53
  <div align="center">
52
54
 
@@ -6,11 +6,13 @@
6
6
  Infinite synthetic data generation for embodied AI
7
7
  </p>
8
8
 
9
+ <!--
9
10
  <p align="center">
10
11
  <a href="https://luckyrobots.github.io/ReleaseV0.1/" target="_blank">
11
12
  <img src="https://img.shields.io/badge/Explore_V0.1-Get_Started-grey?style=for-the-badge&labelColor=grey&color=blue" alt="Get Started" />
12
13
  </a>
13
14
  </p>
15
+ -->
14
16
 
15
17
  <div align="center">
16
18
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "luckyrobots"
7
- version = "0.1.65"
7
+ version = "0.1.66"
8
8
  description = "Robotics-AI Training in Hyperrealistic Game Environments"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -419,6 +419,8 @@ class LuckyRobots(Node):
419
419
 
420
420
  logger.info("LuckyRobots shutdown complete")
421
421
 
422
+ exit(0)
423
+
422
424
  def _cancel_pending_operations(self) -> None:
423
425
  """Cancel all pending reset and step operations"""
424
426
  logger.info("Cancelling pending operations")
File without changes
File without changes