File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
66
77## Unreleased
88
9+ ## [ v1.3.3] - 2023-11-17
910### Changed
10-
1111- Development dependencies removed from runtime dependency list
1212 ([ #109 ] ( https://github.com/stac-utils/stac-check/pull/109 ) )
1313
@@ -99,7 +99,8 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
9999- Validation from stac-validator 2.3.0
100100- Links and assets validation checks
101101
102- [ Unreleased ] : https://github.com/stac-utils/stac-check/compare/v1.3.2...main
102+ [ Unreleased ] : https://github.com/stac-utils/stac-check/compare/v1.3.3...main
103+ [ v1.3.3 ] : https://github.com/stac-utils/stac-check/compare/v1.3.2...v1.3.3
103104[ v1.3.2 ] : https://github.com/stac-utils/stac-check/compare/v1.3.1...v1.3.2
104105[ v1.3.1 ] : https://github.com/stac-utils/stac-check/compare/v1.3.0...v1.3.1
105106[ v1.3.0 ] : https://github.com/stac-utils/stac-check/compare/v1.2.0...v1.3.0
Original file line number Diff line number Diff line change 22"""
33from setuptools import setup , find_packages
44
5- __version__ = "1.3.2 "
5+ __version__ = "1.3.3 "
66
77with open ("README.md" , "r" ) as fh :
88 long_description = fh .read ()
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ def test_linter_bad_assets():
2222 "https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
2323 ]
2424 asset_request_errors = [
25- "https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
25+ "https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg" ,
26+ "http://remotedata.io/catalog/20201211_223832_CS2/extended-metadata.json" ,
27+ "http://cool-sat.com/catalog/20201211_223832_CS2/20201211_223832_CS2.EPH"
2628 ]
2729 assert linter .version == "1.0.0"
2830 assert linter .valid_stac == True
@@ -54,9 +56,13 @@ def test_linter_bad_links_assets():
5456 "https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
5557 ]
5658 asset_request_errors = [
57- "https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg"
59+ "https:/storage.googleapis.com/open-cogs/stac-examples/20201211_223832_CS2.jpg" ,
60+ "http://remotedata.io/catalog/20201211_223832_CS2/extended-metadata.json" ,
61+ "http://cool-sat.com/catalog/20201211_223832_CS2/20201211_223832_CS2.EPH"
62+ ]
63+ link_format_errors = [
64+ "http:/remotdata.io/catalog/20201211_223832_CS2/index.html" ,
5865 ]
59- link_format_errors = ["http:/remotdata.io/catalog/20201211_223832_CS2/index.html" ]
6066 link_request_errors = [
6167 "http://catalog/collection.json" ,
6268 "http:/remotdata.io/catalog/20201211_223832_CS2/index.html"
You can’t perform that action at this time.
0 commit comments