[geopandas] Update to 1.1.2 (#15170)

This commit is contained in:
Semyon Moroz
2025-12-23 16:05:49 +00:00
committed by GitHub
parent 132230480e
commit bb5652f2e7
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
version = "1.1.1"
version = "1.1.2"
# Requires a version of numpy with a `py.typed` file
requires = ["numpy>=1.20", "pandas-stubs", "types-shapely", "pyproj"]
upstream_repository = "https://github.com/geopandas/geopandas"
@@ -282,6 +282,7 @@ class GeoDataFrame(GeoPandasBase, pd.DataFrame): # type: ignore[misc]
def to_crs(self, crs: _ConvertibleToCRS | None, epsg: int, inplace: Literal[True]) -> None: ...
def estimate_utm_crs(self, datum_name: str = "WGS 84") -> CRS: ...
# def __getitem__(self, key): ...
def __delitem__(self, key) -> None: ... # type: ignore[misc]
# def __setitem__(self, key, value) -> None: ...
def copy(self, deep: bool = True) -> Self: ... # type: ignore[misc]
# def merge(self, *args, **kwargs) -> GeoDataFrame | pd.DataFrame: ...