Skip to content

Commit

Permalink
add requests (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveberardi authored Aug 28, 2024
1 parent e07129d commit 98fdaf6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
- Adds a constellation model, allowing you to selectively plot objects by their constellation
- [**v0.11.1**]
- Fixes default horizon style to be consistent with grayscale extension
- [**v0.11.2**]
- Adds `requests` as a required dependency

## v0.10.x
[Documentation](https://archives.starplot.dev/0.10.2/)
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencies = [
"fastparquet >= 2023.10.1",
"pyogrio >= 0.7.2",
"rtree >= 1.2.0",
"requests >= 2.31.0",
]

[project.urls]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ pyarrow==14.0.2
fastparquet==2023.10.1
pyogrio==0.7.2
rtree==1.2.0
requests==2.31.0
2 changes: 1 addition & 1 deletion src/starplot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Star charts and maps"""

__version__ = "0.11.1"
__version__ = "0.11.2"

from .base import BasePlot # noqa: F401
from .map import MapPlot, Projection # noqa: F401
Expand Down

0 comments on commit 98fdaf6

Please sign in to comment.