Skip to content

Commit

Permalink
Make it work in hassio - HA Core 0.114.3 (#3)
Browse files Browse the repository at this point in the history
* Remove the version-requirements

* Change number of ticks to 8

* Back to 9 ticks, add a 2nd "N" to make it work
  • Loading branch information
bouwew committed Aug 23, 2020
1 parent 9de3e41 commit 183eb0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/ha_skyfield/bodies.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def plot_sky(self, output=None, when=None):
np.linspace(0, 90, 10), [f"{int(f)}˚" for f in np.linspace(90, 0, 10)]
)
ax.set_thetagrids(
np.linspace(0, 360.0, 9), ["N", "NE", "E", "SE", "S", "SW", "W", "NW"]
np.linspace(0, 360.0, 9), ["N", "NE", "E", "SE", "S", "SW", "W", "NW", "N"]
)
plt.tight_layout()

Expand Down
2 changes: 1 addition & 1 deletion custom_components/ha_skyfield/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"documentation": "https://github.com/partofthething/ha_skyfield",
"dependencies": [],
"codeowners": [],
"requirements": ["skyfield==1.15", "matplotlib==3.1.2", "numpy==1.17.4"]
"requirements": ["skyfield", "matplotlib", "numpy"]
}

0 comments on commit 183eb0e

Please sign in to comment.