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.
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/PKG-INFO +1 -1
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/brottelescope.py +4 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyproject.toml +1 -1
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/uv.lock +1 -1
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.github/dependabot.yml +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.github/workflows/pypi.yml +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.github/workflows/ruff.yml +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.gitignore +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.pre-commit-config.yaml +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/.readthedocs.yml +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/LICENSE +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/README.md +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/Makefile +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/make.bat +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/requirements.txt +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/source/_static/pyobs.gif +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/source/conf.py +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/docs/source/index.rst +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/__init__.py +0 -0
- {pyobs_brot-2.0.0.dev12 → pyobs_brot-2.0.0.dev13}/pyobs_brot/brotdome.py +0 -0
- {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.
|
|
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.
|
|
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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|