pyobs-gemini 2.0.0.dev4__tar.gz → 2.0.1__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_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/PKG-INFO +3 -3
- {pyobs_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/pyobs_gemini/gemini.py +1 -2
- {pyobs_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/pyproject.toml +3 -3
- {pyobs_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/pyproject.toml.orig +3 -3
- {pyobs_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/pyobs_gemini/__init__.py +0 -0
- {pyobs_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/pyobs_gemini/api.py +0 -0
- {pyobs_gemini-2.0.0.dev4 → pyobs_gemini-2.0.1}/pyobs_gemini/geminidriver.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyobs-gemini
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: pyobs module for Optec Gemini focusser/rotator
|
|
5
5
|
Author: Tim-Oliver Husser, Frederic V. Hessman
|
|
6
6
|
Author-email: Tim-Oliver Husser <thusser@uni-goettingen.de>, Frederic V. Hessman <fhessma@uni-goettingen.de>
|
|
@@ -8,5 +8,5 @@ License-Expression: MIT
|
|
|
8
8
|
Requires-Dist: aioserial>=1.3,<2
|
|
9
9
|
Requires-Dist: astropy>=7.0.1,<9
|
|
10
10
|
Requires-Dist: numpy>=2.2.5,<3
|
|
11
|
-
Requires-Dist: pyobs-core>=2.0.0
|
|
12
|
-
Requires-Python: >=3.11
|
|
11
|
+
Requires-Dist: pyobs-core>=2.0.0,<3
|
|
12
|
+
Requires-Python: >=3.11
|
|
@@ -200,8 +200,7 @@ class GeminiFocuserRotator(
|
|
|
200
200
|
self.rotation = rdict.data[Vocab.POSANG_DEG]
|
|
201
201
|
|
|
202
202
|
# get temp
|
|
203
|
-
|
|
204
|
-
# self._T = fdict.response[Vocab.CURRENT_TEMP.value]
|
|
203
|
+
self._T = await self._driver.get_temperature()
|
|
205
204
|
|
|
206
205
|
# publish current focus/rotation state
|
|
207
206
|
await self.comm.set_state(IFocuser, FocuserState(focus=self.focus, focus_offset=self._focus_offset))
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pyobs-gemini"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.1"
|
|
4
4
|
description = "pyobs module for Optec Gemini focusser/rotator"
|
|
5
|
-
requires-python = ">=3.11
|
|
5
|
+
requires-python = ">=3.11"
|
|
6
6
|
license = "MIT"
|
|
7
7
|
dependencies = [
|
|
8
8
|
"aioserial>=1.3,<2",
|
|
9
9
|
"astropy>=7.0.1,<9",
|
|
10
10
|
"numpy>=2.2.5,<3",
|
|
11
|
-
"pyobs-core>=2.0.0
|
|
11
|
+
"pyobs-core>=2.0.0,<3",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[project.authors]]
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pyobs-gemini"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.1"
|
|
4
4
|
description = "pyobs module for Optec Gemini focusser/rotator"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" },
|
|
7
7
|
{ name = "Frederic V. Hessman", email = "fhessma@uni-goettingen.de" },
|
|
8
8
|
]
|
|
9
|
-
requires-python = ">=3.11
|
|
9
|
+
requires-python = ">=3.11"
|
|
10
10
|
license = "MIT"
|
|
11
11
|
dependencies = [
|
|
12
12
|
"aioserial>=1.3,<2",
|
|
13
13
|
"astropy>=7.0.1,<9",
|
|
14
14
|
"numpy>=2.2.5,<3",
|
|
15
|
-
"pyobs-core>=2.0.0
|
|
15
|
+
"pyobs-core>=2.0.0,<3",
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
[dependency-groups]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|