Antonio Valentino pushed to branch master at Debian GIS Project / morecantile
Commits: e24e09ab by Antonio Valentino at 2026-08-28T08:01:34+00:00 New 0001-no-strict-equality.patch - - - - - e7fbbf85 by Antonio Valentino at 2026-08-28T08:02:11+00:00 Set distribution to unstable - - - - - 3 changed files: - debian/changelog - + debian/patches/0001-no-strict-equality.patch - + debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,9 +1,13 @@ -morecantile (7.0.3-2) UNRELEASED; urgency=medium +morecantile (7.0.3-2) unstable; urgency=medium - * Team upload. + [ Bas Couwenberg ] * Bump Standards-Version to 4.7.4, no changes. - -- Bas Couwenberg <[email protected]> Sat, 04 Apr 2026 10:15:09 +0200 + [ Antonio Valentino ] + * debian/patches: + - New 0001-no-strict-equality.patch (Closes: #1145845). + + -- Antonio Valentino <[email protected]> Fri, 28 Aug 2026 08:01:51 +0000 morecantile (7.0.3-1) unstable; urgency=medium ===================================== debian/patches/0001-no-strict-equality.patch ===================================== @@ -0,0 +1,26 @@ +From: Antonio Valentino <[email protected]> +Date: Fri, 28 Aug 2026 07:48:37 +0000 +Subject: no-strict-equality + +Do not use strict equality for bouning boxes comparison. + +Forwarded: https://github.com/developmentseed/morecantile/pull/247 +--- + tests/test_morecantile.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/tests/test_morecantile.py b/tests/test_morecantile.py +index c35b4ce..7fd7f61 100644 +--- a/tests/test_morecantile.py ++++ b/tests/test_morecantile.py +@@ -452,8 +452,8 @@ def test_tiles_when_tms_bounds_and_provided_bounds_cross_antimeridian( + # antimeridian e.g. min(119.2, -158.605) clamps to much larger area. Now + # that we check to see if lons contain antimeridian, we build tiles that + # actually overlap the provided bounds to tiles. +- assert tms.bbox == tms_bbox +- for a, b in zip(tms.bbox, tms_bbox): ++ # assert tms.bbox == tms_bbox ++ for a, b in zip(tms.bbox, tms_bbox, strict=True): + assert round(a - b, 6) == 0 + assert len(list(tms.tiles(*bounds, zooms=11))) == expected + ===================================== debian/patches/series ===================================== @@ -0,0 +1 @@ +0001-no-strict-equality.patch View it on GitLab: https://salsa.debian.org/debian-gis-team/morecantile/-/compare/2828ce59aeca22f68f23625d8cdec82517222882...e7fbbf85bdb5ae423580c606122e98265faa4b74 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/morecantile/-/compare/2828ce59aeca22f68f23625d8cdec82517222882...e7fbbf85bdb5ae423580c606122e98265faa4b74 You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
