Skip to content

Commit

Permalink
Upgrade pystac to avoid json-schema errors
Browse files Browse the repository at this point in the history
Item validation at version 1.7.* seems to have been broken due to
changes in the github.com hosted GeoJSON Geometry json-schema file.
Later versions seem to have vendored this file and are not affected by
the change.
  • Loading branch information
mmcfarland committed Mar 26, 2024
1 parent 61a0ea9 commit a118345
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pcstac/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --extra=server --output-file=pcstac/requirements.txt --resolver=backtracking pccommon/setup.py pcstac/setup.py
# pip-compile --extra=server --output-file=pcstac/requirements.txt pccommon/setup.py pcstac/setup.py
#
anyio==3.6.2
# via
Expand Down Expand Up @@ -177,7 +177,7 @@ pypgstac[psycopg]==0.7.3
# via
# pcstac (pcstac/setup.py)
# stac-fastapi-pgstac
pystac==1.7.1
pystac==1.9.0
# via
# pcstac (pcstac/setup.py)
# stac-fastapi-types
Expand Down
2 changes: 1 addition & 1 deletion pcstac/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"stac-fastapi.types==2.4.5",
# Required due to some imports related to pypgstac CLI usage in startup script
"pypgstac[psycopg]~=0.7",
"pystac==1.*",
"pystac>=1.8,<2.0",
]

extra_reqs = {
Expand Down

0 comments on commit a118345

Please sign in to comment.