diff --git a/docs/changelog.md b/docs/changelog.md index d68d0b2..f024adc 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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/) diff --git a/pyproject.toml b/pyproject.toml index cb735e8..be24fa6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ dependencies = [ "fastparquet >= 2023.10.1", "pyogrio >= 0.7.2", "rtree >= 1.2.0", + "requests >= 2.31.0", ] [project.urls] diff --git a/requirements.txt b/requirements.txt index 9a82bef..559af81 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,3 +13,4 @@ pyarrow==14.0.2 fastparquet==2023.10.1 pyogrio==0.7.2 rtree==1.2.0 +requests==2.31.0 diff --git a/src/starplot/__init__.py b/src/starplot/__init__.py index c0b66db..5f6225a 100644 --- a/src/starplot/__init__.py +++ b/src/starplot/__init__.py @@ -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