-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #685 from ASFHyP3/develop
Release v0.3.6
- Loading branch information
Showing
22 changed files
with
275 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
import os | ||
|
||
os.environ['ENABLED_EXTENSIONS'] = ','.join([ | ||
'query', | ||
'sort', | ||
'fields', | ||
'pagination', | ||
'context', | ||
]) | ||
|
||
os.environ['ENABLED_EXTENSIONS'] = ','.join( | ||
[ | ||
'query', | ||
'sort', | ||
'fields', | ||
'pagination', | ||
'context', | ||
] | ||
) | ||
|
||
from stac_fastapi.pgstac.app import handler # noqa: F401, E402 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from setuptools import find_packages, setup | ||
|
||
|
||
setup( | ||
name='asf-stac-util', | ||
license='BSD', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[project] | ||
requires-python = "==3.9" | ||
|
||
[tool.ruff] | ||
line-length = 120 | ||
# The directories to consider when resolving first- vs. third-party imports. | ||
# See: https://docs.astral.sh/ruff/settings/#src | ||
src = [ | ||
"**/src", | ||
"lib/*", | ||
"tests", | ||
] | ||
|
||
[tool.ruff.format] | ||
indent-style = "space" | ||
quote-style = "single" | ||
|
||
[tool.ruff.lint] | ||
extend-select = [ | ||
"I", # isort: https://docs.astral.sh/ruff/rules/#isort-i | ||
"UP", # pyupgrade: https://docs.astral.sh/ruff/rules/#pyupgrade-up | ||
|
||
# TODO: Uncomment the following extensions and address their warnings: | ||
# "D", # pydocstyle: https://docs.astral.sh/ruff/rules/#pydocstyle-d | ||
# "ANN", # annotations: https://docs.astral.sh/ruff/rules/#flake8-annotations-ann | ||
|
||
"PTH", # use-pathlib-pth: https://docs.astral.sh/ruff/rules/#flake8-use-pathlib-pth | ||
] | ||
|
||
[tool.ruff.lint.pydocstyle] | ||
convention = "google" | ||
|
||
[tool.ruff.lint.isort] | ||
case-sensitive = true | ||
lines-after-imports = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
mangum==0.17.0 | ||
stac-fastapi.api==2.5.5.post1 | ||
stac-fastapi.extensions==2.5.5.post1 | ||
stac-fastapi.pgstac==2.5.0 | ||
stac-fastapi.types==2.5.5.post1 | ||
mangum==0.19.0 | ||
stac-fastapi.pgstac==3.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
boto3==1.34.140 | ||
boto3==1.35.76 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
-r requirements-apps-api.txt | ||
-r requirements-run-codebuild.txt | ||
./lib/asf-stac-util/ | ||
boto3==1.34.140 | ||
cfn-lint==1.5.0 | ||
flake8==7.1.0 | ||
pypgstac[psycopg]==0.7.10 | ||
boto3==1.35.76 | ||
cfn-lint==1.22.0 | ||
ruff | ||
pypgstac[psycopg]==0.8.6 | ||
pystac==1.10.1 | ||
pytest==8.2.2 | ||
pytest==8.3.4 | ||
requests==2.32.3 | ||
shapely==2.0.4 | ||
tqdm==4.66.4 | ||
uvicorn==0.30.1 | ||
shapely==2.0.6 | ||
tqdm==4.67.1 | ||
uvicorn==0.32.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
import boto3 | ||
|
||
|
||
CLIENT = boto3.client('codebuild') | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.