Skip to content

Commit c7dd186

Browse files
committed
workaround for breaking changes in geopandas, until permanent fix
1 parent 78dda84 commit c7dd186

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
- **1.0.1** (2025-06-27):
2+
- workaround for change in geopandas inheritance
3+
14
- **1.0.0** (2025-04-25):
25
- migrated to PyPi Trusted Publishing
36
- included tests in source wheels

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
]
1313

1414
dependencies = [
15-
"geopandas",
15+
"geopandas<1.1.0",
1616
"joblib",
1717
"numpy",
1818
"pandas",

src/cartogram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""Compute continuous cartograms."""
44

5-
__version__ = "1.0.0"
5+
__version__ = "1.0.1"
66

77
from .cartogram import Cartogram
88

0 commit comments

Comments
 (0)