[Git][debian-gis-team/pystac][upstream] New upstream version 1.8.2
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Wed Aug 9 07:48:05 BST 2023
Antonio Valentino pushed to branch upstream at Debian GIS Project / pystac
Commits:
575bb4e5 by Antonio Valentino at 2023-08-09T06:42:49+00:00
New upstream version 1.8.2
- - - - -
5 changed files:
- CHANGELOG.md
- MANIFEST.in
- pyproject.toml
- pystac/link.py
- pystac/version.py
Changes:
=====================================
CHANGELOG.md
=====================================
@@ -2,11 +2,18 @@
## [Unreleased]
+## [v1.8.2] - 2023-07-12
+
+### Fixed
+
+- Explicitly re-export HREF from `link` ([#1182](https://github.com/stac-utils/pystac/pull/1182))
+- Include `fields-normalized.json` in build ([#1188](https://github.com/stac-utils/pystac/pull/1188))
+
## [v1.8.1] - 2023-06-30
### Fixed
-- Include jsonschemas in package
+- Include jsonschemas in package ([#1181](https://github.com/stac-utils/pystac/pull/1181))
## [v1.8.0] - 2023-06-27
@@ -743,7 +750,8 @@ use `Band.create`
Initial release.
-[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.8.1..main>
+[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.8.2..main>
+[v1.8.2]: <https://github.com/stac-utils/pystac/compare/v1.8.1..v1.8.2>
[v1.8.1]: <https://github.com/stac-utils/pystac/compare/v1.8.0..v1.8.1>
[v1.8.0]: <https://github.com/stac-utils/pystac/compare/v1.7.3..v1.8.0>
[v1.7.3]: <https://github.com/stac-utils/pystac/compare/v1.7.2..v1.7.3>
=====================================
MANIFEST.in
=====================================
@@ -1,2 +1,2 @@
-include pystac/py.typed pystac/html/*.jinja2 pystac/validation/jsonschemas/geojson/*.json pystac/validation/jsonschemas/stac-spec/v1.0.0/*.json
+include pystac/py.typed pystac/html/*.jinja2 pystac/validation/jsonschemas/geojson/*.json pystac/validation/jsonschemas/stac-spec/v1.0.0/*.json pystac/static/*.json
exclude tests/*
=====================================
pyproject.toml
=====================================
@@ -64,7 +64,7 @@ test = [
"pytest-mock~=3.10",
"pytest-recording~=0.12",
"pytest~=7.3",
- "ruff==0.0.275",
+ "ruff==0.0.277",
"types-html5lib~=1.1",
"types-orjson~=3.6",
"types-python-dateutil~=2.8",
@@ -74,7 +74,8 @@ test = [
"vcrpy<5",
]
urllib3 = ["urllib3>=1.26"]
-validation = ["jsonschema>=4.0.1"]
+# jsonschema v4.18.2 breaks validation, and it feels safer to set a ceiling rather than just skip this version. The ceiling should be removed when the v4.18 lineage has settled down and feels safer.
+validation = ["jsonschema>=4.0.1,<4.18"]
[project.urls]
homepage = "https://github.com/stac-utils/pystac"
@@ -97,6 +98,9 @@ select = ["E", "F", "I"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
+ # Allows jsonschema's RefResolver deprecation warning through until we're
+ # updated to support jsonschema v4.18
+ "default::DeprecationWarning:pystac.validation.*"
]
[build-system]
=====================================
pystac/link.py
=====================================
@@ -8,7 +8,9 @@ from typing import TYPE_CHECKING, Any, Dict, Optional, Type, TypeVar, Union
import pystac
from pystac.html.jinja_env import get_jinja_env
from pystac.utils import (
- HREF,
+ HREF as HREF,
+)
+from pystac.utils import (
is_absolute_href,
make_absolute_href,
make_posix_style,
=====================================
pystac/version.py
=====================================
@@ -1,7 +1,7 @@
import os
from typing import Optional
-__version__ = "1.8.1"
+__version__ = "1.8.2"
"""Library version"""
View it on GitLab: https://salsa.debian.org/debian-gis-team/pystac/-/commit/575bb4e58b63b7ff37c8df415aee560d6ae396cb
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pystac/-/commit/575bb4e58b63b7ff37c8df415aee560d6ae396cb
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/20230809/2efce891/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list