Skip to content

Commit 3969385

Browse files
authored
v0.5.3 (#39)
* specify limiting mag * version
1 parent d427339 commit 3969385

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/starplot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Star charts and maps"""
22

3-
__version__ = "0.5.2"
3+
__version__ = "0.5.3"
44

55
from .base import StarPlot # noqa: F401
66
from .zenith import ZenithPlot # noqa: F401

src/starplot/zenith.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def _plot_constellation_labels(self):
144144
self._maybe_remove_label(label)
145145

146146
def _plot_stars(self):
147-
stardata = stars.load(self.limiting_magnitude)
147+
stardata = stars.load(limiting_magnitude=self.limiting_magnitude)
148148
self._stardata = stardata
149149

150150
eph = load(self.ephemeris)

0 commit comments

Comments
 (0)