File tree Expand file tree Collapse file tree 2 files changed +17
-9
lines changed
Expand file tree Collapse file tree 2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8- ## [ Unreleased ]
8+ ## [ 0.0.2 ] - 2022-09-26
99
1010### Added
1111
Original file line number Diff line number Diff line change 2525
2626STAC API Validator requires Python 3.10 and [ Poetry 1.2] ( https://python-poetry.org/docs/ ) .
2727
28- Install the package with development requirements :
28+ You can install _ STAC API Validator _ via [ pip ] from [ PyPI ] :
2929
3030``` console
31- $ poetry install
31+ $ pip install stac-api-validator
3232```
3333
34- Note: if ` poetry update ` or ` poetry install ` hang, try running ` poetry cache clear --all pypi ` to fix the issue.
34+ and then run it:
3535
36- You can now run the command-line interface:
36+ ``` console
37+ $ stac-api-validator \
38+ --root-url https://planetarycomputer.microsoft.com/api/stac/v1/ \
39+ --conformance core --conformance item-search
40+ ```
41+
42+ To install from a clone of this repository for development, first install the package with development requirements:
3743
3844``` console
39- $ poetry run stac-api-validator
45+ $ poetry install
4046```
4147
42- ** Future Work** You can install _ STAC API Validator_ via [ pip] from [ PyPI] :
48+ Note: if ` poetry update ` or ` poetry install ` hang, try running ` poetry cache clear --all pypi ` to fix the issue.
49+
50+ You can now run the command-line interface:
4351
4452``` console
45- $ pip install stac-api-validator
53+ $ poetry run stac-api-validator
4654```
4755
4856## Usage
@@ -104,7 +112,7 @@ Options:
104112Example:
105113
106114```
107- poetry run stac-api-validator \
115+ stac-api-validator \
108116 --root-url https://cmr.earthdata.nasa.gov/stac/LARC_ASDC \
109117 --conformance core --conformance item-search --conformance features
110118```
You can’t perform that action at this time.
0 commit comments