pyobs-brot 2.0.0.dev12__tar.gz → 2.0.0.dev13__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 (21) hide show
  1. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/PKG-INFO +1 -1
  2. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/brottelescope.py +4 -0
  3. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyproject.toml +1 -1
  4. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/uv.lock +1 -1
  5. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.github/dependabot.yml +0 -0
  6. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.github/workflows/pypi.yml +0 -0
  7. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.github/workflows/ruff.yml +0 -0
  8. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.gitignore +0 -0
  9. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.pre-commit-config.yaml +0 -0
  10. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.readthedocs.yml +0 -0
  11. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/LICENSE +0 -0
  12. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/README.md +0 -0
  13. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/Makefile +0 -0
  14. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/make.bat +0 -0
  15. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/requirements.txt +0 -0
  16. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/source/_static/pyobs.gif +0 -0
  17. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/source/conf.py +0 -0
  18. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/source/index.rst +0 -0
  19. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/__init__.py +0 -0
  20. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/brotdome.py +0 -0
  21. {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/brotroof.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyobs-brot
3
- Version: 2.0.0.dev12
3
+ Version: 2.0.0.dev13
4
4
  Summary: pyobs module for BROTlib telescopes
5
5
  Author-email: Tim-Oliver Husser <thusser@uni-goettingen.de>, Lukas Melzig <lukas.melzig@stud.uni-goettingen.de>
6
6
  License-Expression: MIT
@@ -95,6 +95,10 @@ class BrotBaseTelescope(
95
95
  await self.comm.set_state(IOffsetsRaDec, RaDecOffsetState(ra=0.0, dec=0.0))
96
96
  await self.comm.set_state(IOffsetsAltAz, AltAzOffsetState(alt=0.0, az=0.0))
97
97
 
98
+ # placeholder -- real readings only exist once the MQTT client has had a chance to
99
+ # receive telemetry, which _update_task() (started above) hasn't had time to do yet
100
+ await self.comm.set_state(ITemperatures, TemperaturesState(readings=[]))
101
+
98
102
  async def close(self) -> None:
99
103
  await BaseTelescope.close(self)
100
104
  await self.mqtt.close()
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyobs-brot"
3
- version = "2.0.0.dev12"
3
+ version = "2.0.0.dev13"
4
4
  description = "pyobs module for BROTlib telescopes"
5
5
  authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }, { name = "Lukas Melzig", email = "lukas.melzig@stud.uni-goettingen.de" }]
6
6
  requires-python = ">=3.11"
@@ -1783,7 +1783,7 @@ wheels = [
1783
1783
 
1784
1784
  [[package]]
1785
1785
  name = "pyobs-brot"
1786
- version = "2.0.0.dev12"
1786
+ version = "2.0.0.dev13"
1787
1787
  source = { editable = "." }
1788
1788
  dependencies = [
1789
1789
  { name = "astropy" },