pyobs-aravis 2.0.0.dev10__tar.gz → 2.0.0.dev11__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 (20) hide show
  1. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/PKG-INFO +1 -1
  2. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/pyobs_aravis/araviscamera.py +4 -0
  3. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/pyproject.toml +1 -1
  4. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/uv.lock +1 -1
  5. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/.github/workflows/pypi.yml +0 -0
  6. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/.github/workflows/ruff.yml +0 -0
  7. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/.pre-commit-config.yaml +0 -0
  8. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/.readthedocs.yml +0 -0
  9. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/CHANGELOG.rst +0 -0
  10. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/LICENSE +0 -0
  11. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/README.md +0 -0
  12. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/docs/Makefile +0 -0
  13. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/docs/make.bat +0 -0
  14. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/docs/requirements.txt +0 -0
  15. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/docs/source/_static/pyobs.gif +0 -0
  16. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/docs/source/conf.py +0 -0
  17. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/docs/source/index.rst +0 -0
  18. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/pyobs_aravis/__init__.py +0 -0
  19. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/pyobs_aravis/aravis.py +0 -0
  20. {pyobs_aravis-2.0.0.dev10 → pyobs_aravis-2.0.0.dev11}/pyobs_aravis/gui.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyobs-aravis
3
- Version: 2.0.0.dev10
3
+ Version: 2.0.0.dev11
4
4
  Summary: pyobs module for Aravis cameras
5
5
  Author-email: Tim-Oliver Husser <thusser@uni-goettingen.de>
6
6
  License-Expression: MIT
@@ -79,6 +79,10 @@ class AravisCamera(BaseVideo, IExposureTime):
79
79
 
80
80
  await self.activate_camera()
81
81
 
82
+ # publish initial exposure-time state -- otherwise a caller doing wait_for_state()
83
+ # before the first set_exposure_time() call would time out with nothing ever published
84
+ await self.comm.set_state(IExposureTime, ExposureTimeState(exposure_time=self._exposure_time))
85
+
82
86
  async def close(self) -> None:
83
87
  """Close the module."""
84
88
  await BaseVideo.close(self)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyobs-aravis"
3
- version = "2.0.0.dev10"
3
+ version = "2.0.0.dev11"
4
4
  description = "pyobs module for Aravis cameras"
5
5
  authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }]
6
6
  requires-python = ">=3.11"
@@ -2194,7 +2194,7 @@ wheels = [
2194
2194
 
2195
2195
  [[package]]
2196
2196
  name = "pyobs-aravis"
2197
- version = "2.0.0.dev10"
2197
+ version = "2.0.0.dev11"
2198
2198
  source = { editable = "." }
2199
2199
  dependencies = [
2200
2200
  { name = "numpy", version = "2.4.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" },