robo-goggles 0.1.0__tar.gz → 0.1.1__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 robo-goggles might be problematic. Click here for more details.

Files changed (28) hide show
  1. {robo_goggles-0.1.0/robo_goggles.egg-info → robo_goggles-0.1.1}/PKG-INFO +1 -1
  2. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/__init__.py +1 -1
  3. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/_core/integrations/__init__.py +1 -1
  4. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/pyproject.toml +1 -1
  5. {robo_goggles-0.1.0 → robo_goggles-0.1.1/robo_goggles.egg-info}/PKG-INFO +1 -1
  6. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/LICENSE +0 -0
  7. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/README.md +0 -0
  8. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/_core/integrations/console.py +0 -0
  9. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/_core/integrations/storage.py +0 -0
  10. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/_core/integrations/wandb.py +0 -0
  11. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/_core/logger.py +0 -0
  12. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/_core/routing.py +0 -0
  13. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/config.py +0 -0
  14. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/decorators.py +0 -0
  15. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/history/__init__.py +0 -0
  16. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/history/buffer.py +0 -0
  17. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/history/spec.py +0 -0
  18. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/history/types.py +0 -0
  19. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/history/utils.py +0 -0
  20. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/media.py +0 -0
  21. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/shutdown.py +0 -0
  22. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/goggles/types.py +0 -0
  23. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/robo_goggles.egg-info/SOURCES.txt +0 -0
  24. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/robo_goggles.egg-info/dependency_links.txt +0 -0
  25. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/robo_goggles.egg-info/requires.txt +0 -0
  26. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/robo_goggles.egg-info/top_level.txt +0 -0
  27. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/setup.cfg +0 -0
  28. {robo_goggles-0.1.0 → robo_goggles-0.1.1}/tests/test_api.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robo-goggles
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Observability framework for robotics research
5
5
  Author-email: Antonio Terpin <aterpin@ethz.ch>, Francesco Banelli <fbanelli@ethz.ch>
6
6
  License: MIT
@@ -755,7 +755,7 @@ def _get_handler_class(class_name: str) -> type:
755
755
 
756
756
  try:
757
757
  from ._core.integrations.wandb import WandBHandler
758
- except ImportError:
758
+ except Exception:
759
759
  WandBHandler = None
760
760
 
761
761
  __all__ = [
@@ -22,5 +22,5 @@ __all__ = [
22
22
 
23
23
  try:
24
24
  from .wandb import WandBHandler
25
- except ImportError:
25
+ except Exception:
26
26
  __all__.append("WandBHandler")
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "robo-goggles"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  authors = [
9
9
  { name = "Antonio Terpin", email = "aterpin@ethz.ch" },
10
10
  { name = "Francesco Banelli", email = "fbanelli@ethz.ch" },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robo-goggles
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Observability framework for robotics research
5
5
  Author-email: Antonio Terpin <aterpin@ethz.ch>, Francesco Banelli <fbanelli@ethz.ch>
6
6
  License: MIT
File without changes
File without changes
File without changes