[Git][debian-gis-team/pystac][master] 3 commits: New upstream version 1.8.2
Antonio Valentino (@antonio.valentino)
gitlab at salsa.debian.org
Wed Aug 9 07:47:51 BST 2023
Antonio Valentino pushed to branch master at Debian GIS Project / pystac
Commits:
575bb4e5 by Antonio Valentino at 2023-08-09T06:42:49+00:00
New upstream version 1.8.2
- - - - -
b93c180c by Antonio Valentino at 2023-08-09T06:43:01+00:00
Update upstream source from tag 'upstream/1.8.2'
Update to upstream version '1.8.2'
with Debian dir 66d17667151bf6cebc7e6a2d1bb6973013326092
- - - - -
9f657d27 by Antonio Valentino at 2023-08-09T06:44:11+00:00
New upstream release
- - - - -
6 changed files:
- CHANGELOG.md
- MANIFEST.in
- debian/changelog
- 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/*
=====================================
debian/changelog
=====================================
@@ -1,5 +1,6 @@
-pystac (1.8.1-2) UNRELEASED; urgency=medium
+pystac (1.8.2-1) UNRELEASED; urgency=medium
+ * New upstream release.
* Drop the unnecessary d/tests folder.
-- Antonio Valentino <antonio.valentino at tiscali.it> Sat, 15 Jul 2023 14:22:45 +0000
=====================================
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/-/compare/bf5c8b2b70689c4cdce3299f2a174b675f1e1c3b...9f657d2709034101504efa5c780d780751104d80
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pystac/-/compare/bf5c8b2b70689c4cdce3299f2a174b675f1e1c3b...9f657d2709034101504efa5c780d780751104d80
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/cfd42e54/attachment-0001.htm>
More information about the Pkg-grass-devel
mailing list