Skip to content

Commit 0496011

Browse files
committed
release: v1.7.3
Includes a backport fix for #1085.
1 parent 71f1708 commit 0496011

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [v1.7.3]
6+
57
### Fixed
68

79
- Duplicate `self` links in Items ([#1103](https://github.com/stac-utils/pystac/pull/1103))
@@ -680,7 +682,8 @@ use `Band.create`
680682

681683
Initial release.
682684

683-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.7.2..main>
685+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.7.3..main>
686+
[v1.7.3]: <https://github.com/stac-utils/pystac/compare/v1.7.2..v1.7.3>
684687
[v1.7.2]: <https://github.com/stac-utils/pystac/compare/v1.7.1..v1.7.2>
685688
[v1.7.1]: <https://github.com/stac-utils/pystac/compare/v1.7.0..v1.7.1>
686689
[v1.7.0]: <https://github.com/stac-utils/pystac/compare/v1.6.1..v1.7.0>

pystac/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from typing import Optional
33

4-
__version__ = "1.7.2"
4+
__version__ = "1.7.3"
55
"""Library version"""
66

77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
author="stac-utils",
2020
author_email="stac@radiant.earth",
2121
url="https://github.com/stac-utils/pystac",
22-
packages=find_packages(exclude=["tests*"]),
22+
packages=find_packages(exclude=["tests*", "benchmarks*"]),
2323
package_data={"": ["py.typed", "*.jinja2"]},
2424
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
2525
python_requires=">=3.8",

0 commit comments

Comments
 (0)