Skip to content

Commit 6776dbe

Browse files
authored
more strict versions (#133)
1 parent c4f5ce3 commit 6776dbe

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- Increased minimum required version of GeoPandas to `1.0.1`
1010
- [**v0.15.1**] Fixes bug with build script that prevented starplot data from being included in the distribution
1111
- [**v0.15.2**] Fixes a few colors in the dark blue and blue gold style extensions
12+
- [**v0.15.3**] Locks version of a few dependencies (DuckDB and Ibis)
1213

1314
## v0.14.x
1415
[Documentation](https://archives.starplot.dev/0.14.0/)

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ dependencies = [
3131
"pyogrio >= 0.10.0",
3232
"rtree >= 1.2.0",
3333
"requests >= 2.31.0",
34-
"duckdb >= 1.1.3",
35-
"ibis-framework[duckdb,geospatial] >= 9.5.0",
34+
"duckdb ~= 1.1.3",
35+
"ibis-framework[duckdb,geospatial] ~= 9.5.0",
3636
]
3737

3838
[project.urls]

src/starplot/__init__.py

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

3-
__version__ = "0.15.2"
3+
__version__ = "0.15.3"
44

55
from .base import BasePlot # noqa: F401
66
from .map import MapPlot, Projection # noqa: F401

0 commit comments

Comments
 (0)