Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-geopandas for
openSUSE:Factory checked in at 2023-09-25 20:02:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-geopandas (Old)
and /work/SRC/openSUSE:Factory/.python-geopandas.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-geopandas"
Mon Sep 25 20:02:10 2023 rev:4 rq:1113178 version:0.14.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-geopandas/python-geopandas.changes
2023-06-23 21:52:31.858593469 +0200
+++
/work/SRC/openSUSE:Factory/.python-geopandas.new.1770/python-geopandas.changes
2023-09-25 20:03:24.682610842 +0200
@@ -1,0 +2,65 @@
+Sat Sep 23 08:43:04 UTC 2023 - Ben Greiner <[email protected]>
+
+- Update to 0.14.0
+ * GeoPandas will use Shapely 2.0 by default instead of PyGEOS
+ when both Shapely >= 2.0 and PyGEOS are installed. PyGEOS will
+ continue to be used by default when PyGEOS is installed
+ alongside Shapely < 2.0. Support for PyGEOS and Shapely < 2.0
+ will be removed in GeoPandas 1.0. (#2999)
+ ## API changes:
+ * seed keyword in sample_points is deprecated. Use rng instead.
+ (#2913).
+ ## New methods:
+ * Added concave_hull method from shapely to
+ GeoSeries/GeoDataframe (#2903).
+ * Added delaunay_triangles method from shapely to
+ GeoSeries/GeoDataframe (#2907).
+ * Added extract_unique_points method from shapely to
+ GeoSeries/GeoDataframe (#2915).
+ * Added frechet_distance() method from shapely to
+ GeoSeries/GeoDataframe (#2929).
+ * Added hausdorff_distance method from shapely to
+ GeoSeries/GeoDataframe (#2909).
+ * Added minimum_rotated_rectangle method from shapely to
+ GeoSeries/GeoDataframe (#2541).
+ * Added offset_curve method from shapely to
+ GeoSeries/GeoDataframe (#2902).
+ * Added remove_repeated_points method from shapely to
+ GeoSeries/GeoDataframe (#2940).
+ * Added reverse method from shapely to GeoSeries/GeoDataframe
+ (#2988).
+ * Added segmentize method from shapely to GeoSeries/GeoDataFrame
+ (#2910).
+ * Added shortest_line method from shapely to
+ GeoSeries/GeoDataframe (#2960).
+ ## New features and improvements:
+ * Added exclusive parameter to sjoin_nearest method for Shapely
+ >= 2.0 (#2877)
+ * The to_file() method will now automatically detect the
+ FlatGeoBuf driver
+ * for files with the .fgb extension (#2958)
+ ## Bug fixes:
+ * Fix ambiguous error when GeoDataFrame is initialized with a
+ column called "crs" (#2944)
+ * Fix a color assignment in explore when using UserDefined bins
+ (#2923)
+ * Fix bug in apply with axis=1 where the given user defined
+ function returns nested
+ * data in the geometry column (#2959)
+ * Properly infer schema for np.int32 and pd.Int32Dtype columns
+ (#2950)
+ * assert_geodataframe_equal now handles GeoDataFrames with no
+ active geometry (#2498)
+ ## Notes on (optional) dependencies:
+ * GeoPandas 0.14 drops support for Python 3.8 and pandas 1.3 and
+ below (the minimum
+ * supported pandas version is now 1.4). Further, the minimum
+ required versions for the
+ * listed dependencies have now changed to shapely 1.8.0, fiona
+ 1.8.21, pyproj 3.3.0 and
+ * matplotlib 3.5.0 (#3001)
+ ## Deprecations and compatibility notes:
+ * geom_almost_equals() methods have been deprecated and
+ * geom_equals_exact() should be used instead (#2604).
+
+-------------------------------------------------------------------
Old:
----
geopandas-0.13.2.tar.gz
New:
----
geopandas-0.14.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-geopandas.spec ++++++
--- /var/tmp/diff_new_pack.QxnkQd/_old 2023-09-25 20:03:25.814651655 +0200
+++ /var/tmp/diff_new_pack.QxnkQd/_new 2023-09-25 20:03:25.818651800 +0200
@@ -25,25 +25,25 @@
%bcond_with test
%endif
Name: python-geopandas%{psuffix}
-Version: 0.13.2
+Version: 0.14.0
Release: 0
Summary: Geographic pandas extensions
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://geopandas.org
Source:
https://files.pythonhosted.org/packages/source/g/geopandas/geopandas-%{version}.tar.gz
-BuildRequires: %{python_module base >= 3.8}
+BuildRequires: %{python_module base >= 3.9}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 61}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: proj
-Requires: python-Fiona >= 1.8.19
+Requires: python-Fiona >= 1.8.21
Requires: python-packaging
-Requires: python-pandas >= 1.1.0
-Requires: python-pyproj >= 3.0.1
-Requires: python-shapely >= 1.7.1
+Requires: python-pandas >= 1.4.0
+Requires: python-pyproj >= 3.3.0
+Requires: python-shapely >= 1.8.0
Recommends: python-geopy
Recommends: python-matplotlib
BuildArch: noarch
@@ -53,7 +53,7 @@
BuildRequires: %{python_module fsspec}
BuildRequires: %{python_module geopandas = %{version}}
BuildRequires: %{python_module geopy}
-BuildRequires: %{python_module matplotlib}
+BuildRequires: %{python_module matplotlib >= 3.5.0}
BuildRequires: %{python_module psycopg2}
BuildRequires: %{python_module pyarrow}
BuildRequires: %{python_module pygeos >= 0.10}
@@ -95,6 +95,9 @@
# wrong shapely type
donttest="$donttest or (test_geom_methods and test_sample_points_array)"
donttest="$donttest or (test_random and test_uniform and geom)"
+if [ $(getconf LONG_BIT) -eq 32 ]; then
+ donttest="$donttest or test_explode or test_get_coordinates_parts"
+fi
%pytest -rsfE -k "not ($donttest)"
%endif
++++++ geopandas-0.13.2.tar.gz -> geopandas-0.14.0.tar.gz ++++++
++++ 6251 lines of diff (skipped)