pyobs-gemini 2.0.0.dev2__tar.gz → 2.0.0.dev4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyobs-gemini
3
- Version: 2.0.0.dev2
3
+ Version: 2.0.0.dev4
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.dev48,<3
11
+ Requires-Dist: pyobs-core>=2.0.0.dev82,<3
12
12
  Requires-Python: >=3.11, <3.14
@@ -30,9 +30,9 @@ log = logging.getLogger(__name__)
30
30
 
31
31
 
32
32
  class GeminiFocuserRotator(
33
+ Module,
33
34
  FitsNamespaceMixin,
34
35
  MotionStatusMixin,
35
- Module,
36
36
  IRotation,
37
37
  IFocuser,
38
38
  ICalibrate,
@@ -50,7 +50,7 @@ class GeminiFocuserRotator(
50
50
  *args: Any,
51
51
  **kwargs: Any,
52
52
  ):
53
- Module.__init__(self, *args, **kwargs)
53
+ super().__init__(*args, motion_status_interfaces=["IFocuser", "IRotation"], **kwargs)
54
54
 
55
55
  # add thread func
56
56
  self.add_background_task(self._gdriver_update_func, True)
@@ -110,10 +110,6 @@ class GeminiFocuserRotator(
110
110
  else:
111
111
  self._fits_config = fits_config
112
112
 
113
- # mixins
114
- FitsNamespaceMixin.__init__(self, *args, **kwargs)
115
- MotionStatusMixin.__init__(self, **kwargs, motion_status_interfaces=["IFocuser", "IRotation"])
116
-
117
113
  async def open(self) -> None:
118
114
  """Open module."""
119
115
  await Module.open(self)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyobs-gemini"
3
- version = "2.0.0.dev2"
3
+ version = "2.0.0.dev4"
4
4
  description = "pyobs module for Optec Gemini focusser/rotator"
5
5
  requires-python = ">=3.11,<3.14"
6
6
  license = "MIT"
@@ -8,7 +8,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.dev48,<3",
11
+ "pyobs-core>=2.0.0.dev82,<3",
12
12
  ]
13
13
 
14
14
  [[project.authors]]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyobs-gemini"
3
- version = "2.0.0.dev2"
3
+ version = "2.0.0.dev4"
4
4
  description = "pyobs module for Optec Gemini focusser/rotator"
5
5
  authors = [
6
6
  { name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" },
@@ -12,7 +12,7 @@ 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.dev48,<3",
15
+ "pyobs-core>=2.0.0.dev82,<3",
16
16
  ]
17
17
 
18
18
  [dependency-groups]