[Git][debian-gis-team/morecantile][upstream] New upstream version 7.0.3

Antonio Valentino (@antonio.valentino) gitlab at salsa.debian.org
Sun Feb 8 17:07:33 GMT 2026



Antonio Valentino pushed to branch upstream at Debian GIS Project / morecantile


Commits:
86d2acf0 by Antonio Valentino at 2026-02-08T17:03:30+00:00
New upstream version 7.0.3
- - - - -


6 changed files:

- .pre-commit-config.yaml
- CHANGES.md
- morecantile/__init__.py
- morecantile/scripts/cli.py
- pyproject.toml
- uv.lock


Changes:

=====================================
.pre-commit-config.yaml
=====================================
@@ -4,14 +4,8 @@ repos:
     hooks:
       - id: validate-pyproject
 
-  - repo: https://github.com/PyCQA/isort
-    rev: 5.13.2
-    hooks:
-      - id: isort
-        language_version: python
-
   - repo: https://github.com/astral-sh/ruff-pre-commit
-    rev: v0.3.5
+    rev: v0.15.0
     hooks:
       - id: ruff
         args: ["--fix"]
@@ -23,5 +17,5 @@ repos:
       - id: mypy
         language_version: python
         additional_dependencies:
-        - types-attrs
-        - pydantic~=2.0
+          - types-attrs
+          - pydantic~=2.0


=====================================
CHANGES.md
=====================================
@@ -1,6 +1,10 @@
 
 ## Unreleased
 
+## 7.0.3 (2026-02-05)
+
+* add top-level export (`__all__`) (author @kylebarron, https://github.com/developmentseed/morecantile/pull/202)
+
 ## 7.0.2 (2026-01-05)
 
 * fix `_lr` and `_ul` methods for `bottomLeft` TMS


=====================================
morecantile/__init__.py
=====================================
@@ -8,8 +8,17 @@ Refs:
 
 """
 
-__version__ = "7.0.2"
+__version__ = "7.0.3"
 
-from .commons import BoundingBox, Coords, Tile  # noqa
-from .defaults import TileMatrixSets, tms  # noqa
-from .models import TileMatrixSet  # noqa
+from .commons import BoundingBox, Coords, Tile
+from .defaults import TileMatrixSets, tms
+from .models import TileMatrixSet
+
+__all__ = [
+    "BoundingBox",
+    "Coords",
+    "Tile",
+    "TileMatrixSet",
+    "TileMatrixSets",
+    "tms",
+]


=====================================
morecantile/scripts/cli.py
=====================================
@@ -175,7 +175,7 @@ def cli(ctx, verbose, quiet):
 @click.option(
     "--extents/--no-extents",
     default=False,
-    help="Write shape extents as ws-separated strings (default is " "False).",
+    help="Write shape extents as ws-separated strings (default is False).",
 )
 # Optionally buffer the shapes by shifting the x and y values of each
 # vertex by a constant number of decimal degrees or meters (depending
@@ -522,7 +522,7 @@ def custom(
 @click.option(
     "--extents/--no-extents",
     default=False,
-    help="Write shape extents as ws-separated strings (default is " "False).",
+    help="Write shape extents as ws-separated strings (default is False).",
 )
 # Optionally buffer the shapes by shifting the x and y values of each
 # vertex by a constant number of decimal degrees or meters (depending


=====================================
pyproject.toml
=====================================
@@ -119,7 +119,7 @@ filterwarnings = [
 ]
 
 [tool.bumpversion]
-current_version = "7.0.2"
+current_version = "7.0.3"
 
 search = "{current_version}"
 replace = "{new_version}"


=====================================
uv.lock
=====================================
The diff for this file was not included because it is too large.


View it on GitLab: https://salsa.debian.org/debian-gis-team/morecantile/-/commit/86d2acf0ff62bd65a8cd39bc4b3d9fab29456d45

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/morecantile/-/commit/86d2acf0ff62bd65a8cd39bc4b3d9fab29456d45
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20260208/f7ed7704/attachment-0001.htm>


More information about the Pkg-grass-devel mailing list