Skip to content

Commit fb5ce19

Browse files
authored
Removed optika dependency since it was not being used. (#18)
1 parent d19c18c commit fb5ce19

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

msfc_ccd/_sensors.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import abc
33
import dataclasses
44
import astropy.units as u
5-
import optika
65

76
__all__ = [
87
"TeledyneCCD230",
@@ -11,7 +10,7 @@
1110

1211
@dataclasses.dataclass(eq=False, repr=False)
1312
class AbstractSensor(
14-
optika.mixins.Printable,
13+
abc.ABC,
1514
):
1615
"""
1716
An interface for an imaging sensor or an ensemble of imaging sensors.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ classifiers = [
1515
]
1616
dependencies = [
1717
"astropy",
18-
"named-arrays",
19-
"optika==0.12.0",
18+
"named-arrays==0.24.0",
2019
]
2120
dynamic = ["version"]
2221

0 commit comments

Comments
 (0)