pigeon-tem-comms 0.4.4__tar.gz → 0.4.6__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 (28) hide show
  1. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/PKG-INFO +1 -1
  2. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/__init__.py +1 -1
  3. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/stage/motion.py +2 -2
  4. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/tile/__init__.py +2 -2
  5. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pigeon_tem_comms.egg-info/PKG-INFO +1 -1
  6. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pyproject.toml +1 -1
  7. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/LICENSE +0 -0
  8. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/README.md +0 -0
  9. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/buffer.py +0 -0
  10. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/camera.py +0 -0
  11. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/montage.py +0 -0
  12. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/qc.py +0 -0
  13. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/scope.py +0 -0
  14. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/stage/__init__.py +0 -0
  15. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/stage/aperture.py +0 -0
  16. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/stage/rotation.py +0 -0
  17. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/tile/statistics.py +0 -0
  18. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/TEM_comms/ui.py +0 -0
  19. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pigeon_tem_comms.egg-info/SOURCES.txt +0 -0
  20. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pigeon_tem_comms.egg-info/dependency_links.txt +0 -0
  21. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pigeon_tem_comms.egg-info/entry_points.txt +0 -0
  22. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pigeon_tem_comms.egg-info/requires.txt +0 -0
  23. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/pigeon_tem_comms.egg-info/top_level.txt +0 -0
  24. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/setup.cfg +0 -0
  25. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/tests/test_buffer.py +0 -0
  26. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/tests/test_qc.py +0 -0
  27. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/tests/test_scope_command.py +0 -0
  28. {pigeon_tem_comms-0.4.4 → pigeon_tem_comms-0.4.6}/tests/test_ui.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pigeon-tem-comms
3
- Version: 0.4.4
3
+ Version: 0.4.6
4
4
  Summary: Pigeon messages for the next generation TEM imaging system.
5
5
  Author-email: Cameron Devine <cameron.devine@alleninstitute.org>
6
6
  License: BSD 3 Clause
@@ -22,7 +22,7 @@ topics = {
22
22
  "stage.motion.status": stage.motion.Status,
23
23
  "stage.rotation.command": stage.rotation.Command,
24
24
  "stage.rotation.status": stage.rotation.Status,
25
- "tile.jpeg": tile.JPEG,
25
+ "tile.preview": tile.Preview,
26
26
  "tile.minimap": tile.Minimap,
27
27
  "tile.processed": tile.Processed,
28
28
  "tile.raw": tile.Raw,
@@ -8,7 +8,7 @@ class Command(BaseMessage):
8
8
 
9
9
 
10
10
  class Status(BaseMessage):
11
- x: int
12
- y: int
11
+ x: int | None
12
+ y: int | None
13
13
  in_motion: bool
14
14
  error: str = ""
@@ -2,9 +2,9 @@ from pigeon import BaseMessage
2
2
  from . import statistics
3
3
 
4
4
 
5
- class JPEG(BaseMessage):
5
+ class Preview(BaseMessage):
6
6
  tile_id: str
7
- path: str
7
+ image: str
8
8
 
9
9
 
10
10
  class Minimap(BaseMessage):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pigeon-tem-comms
3
- Version: 0.4.4
3
+ Version: 0.4.6
4
4
  Summary: Pigeon messages for the next generation TEM imaging system.
5
5
  Author-email: Cameron Devine <cameron.devine@alleninstitute.org>
6
6
  License: BSD 3 Clause
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pigeon-tem-comms"
3
- version = "0.4.4"
3
+ version = "0.4.6"
4
4
  authors = [
5
5
  { name="Cameron Devine", email="cameron.devine@alleninstitute.org" },
6
6
  ]