pyobs-brot 2.0.0.dev7__tar.gz → 2.0.0.dev9__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.dev7 → pyobs_brot-2.0.0.dev9}/PKG-INFO +1 -1
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/pyobs_brot/brottelescope.py +6 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/pyproject.toml +1 -1
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/uv.lock +4 -4
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/.github/workflows/pypi.yml +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/.github/workflows/ruff.yml +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/.gitignore +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/.pre-commit-config.yaml +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/.readthedocs.yml +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/LICENSE +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/README.md +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/docs/Makefile +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/docs/make.bat +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/docs/requirements.txt +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/docs/source/_static/pyobs.gif +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/docs/source/conf.py +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/docs/source/index.rst +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/pyobs_brot/__init__.py +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/pyobs_brot/brotdome.py +0 -0
- {pyobs_brot-2.0.0.dev7 → pyobs_brot-2.0.0.dev9}/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.dev9
|
|
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
|
|
@@ -138,6 +138,12 @@ class BrotBaseTelescope(
|
|
|
138
138
|
az = self.brot.telescope._telemetry.POSITION.HORIZONTAL.AZ
|
|
139
139
|
await self.comm.set_state(IPointingAltAz, AltAzState(alt=alt, az=az))
|
|
140
140
|
|
|
141
|
+
# publish focus state
|
|
142
|
+
await self.comm.set_state(
|
|
143
|
+
IFocuser,
|
|
144
|
+
FocuserState(focus=float(self.brot.focus.position - self.focus_offset), focus_offset=self.focus_offset),
|
|
145
|
+
)
|
|
146
|
+
|
|
141
147
|
# publish temperatures
|
|
142
148
|
readings = []
|
|
143
149
|
for name, loc in self.temperatures.items():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pyobs-brot"
|
|
3
|
-
version = "2.0.0.
|
|
3
|
+
version = "2.0.0.dev9"
|
|
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.
|
|
1786
|
+
version = "2.0.0.dev9"
|
|
1787
1787
|
source = { editable = "." }
|
|
1788
1788
|
dependencies = [
|
|
1789
1789
|
{ name = "astropy" },
|
|
@@ -1818,7 +1818,7 @@ dev = [
|
|
|
1818
1818
|
|
|
1819
1819
|
[[package]]
|
|
1820
1820
|
name = "pyobs-core"
|
|
1821
|
-
version = "2.0.0.
|
|
1821
|
+
version = "2.0.0.dev29"
|
|
1822
1822
|
source = { registry = "https://pypi.org/simple" }
|
|
1823
1823
|
dependencies = [
|
|
1824
1824
|
{ name = "aiohttp" },
|
|
@@ -1848,9 +1848,9 @@ dependencies = [
|
|
|
1848
1848
|
{ name = "tenacity" },
|
|
1849
1849
|
{ name = "typing-extensions" },
|
|
1850
1850
|
]
|
|
1851
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1851
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3f/78/fa510d74ef173abe05c1d65a6305c68510f323b376f5b6b31b3d6ad6ee25/pyobs_core-2.0.0.dev29.tar.gz", hash = "sha256:af6b3b10429c399ae9b22eddeb17f345823ee7c7b924f13bed900a9782502350", size = 336990, upload-time = "2026-07-18T15:48:44.422Z" }
|
|
1852
1852
|
wheels = [
|
|
1853
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1853
|
+
{ url = "https://files.pythonhosted.org/packages/e4/6d/c9627252e91d8c9b71b8f0535acc46e55f6eca380d01fa0e6da7a76e05a5/pyobs_core-2.0.0.dev29-py3-none-any.whl", hash = "sha256:fa085f0241708fa5efea5f1ab211680ece1bf1597ae4d0f4f6516a63d7e31937", size = 557071, upload-time = "2026-07-18T15:48:43.026Z" },
|
|
1854
1854
|
]
|
|
1855
1855
|
|
|
1856
1856
|
[[package]]
|
|
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
|