Skip to content

Commit dff0a6c

Browse files
committed
update, clean dependencies
1 parent 73fc73a commit dff0a6c

File tree

9 files changed

+11
-31
lines changed

9 files changed

+11
-31
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@ jobs:
8484
run: |
8585
python -m pip install --upgrade pipenv wheel
8686
87-
- name: Install core library stac-fastapi
88-
run: |
89-
pip install ./stac_fastapi/core
90-
9187
- name: Install elasticsearch stac-fastapi
9288
run: |
9389
pip install ./stac_fastapi/elasticsearch[dev,server]
@@ -96,6 +92,10 @@ jobs:
9692
run: |
9793
pip install ./stac_fastapi/opensearch[dev,server]
9894
95+
- name: Install core library stac-fastapi
96+
run: |
97+
pip install ./stac_fastapi/core
98+
9999
- name: Run test suite against Elasticsearch 7.x
100100
run: |
101101
cd stac_fastapi/elasticsearch && pipenv run pytest -svvv

examples/pip_docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ WORKDIR /app
1515

1616
COPY . /app
1717

18-
RUN pip install stac-fastapi.elasticsearch==0.3.0
18+
RUN pip install stac-fastapi.elasticsearch==1.1.0

postman_collections/stac-fastapi-elasticsearch.postman_collection.json renamed to examples/postman_collections/stac-fastapi-elasticsearch.postman_collection.json

File renamed without changes.

stac_fastapi/core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# stac-fastapi core library for Elasticsearch and Opensearch backends

stac_fastapi/core/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
version = attr: stac_fastapi.core.version.__version__
2+
version = 0.1.0

stac_fastapi/elasticsearch/setup.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,11 @@
66
desc = f.read()
77

88
install_requires = [
9-
"fastapi",
10-
"attrs",
11-
"pydantic[dotenv]<2",
12-
"stac_pydantic==2.0.*",
13-
"stac-fastapi.types==2.4.9",
14-
"stac-fastapi.api==2.4.9",
15-
"stac-fastapi.extensions==2.4.9",
9+
"stac-fastapi.core==0.1.0",
1610
"elasticsearch[async]==8.11.0",
1711
"elasticsearch-dsl==8.11.0",
18-
"pystac[validation]",
1912
"uvicorn",
20-
"orjson",
21-
"overrides",
2213
"starlette",
23-
"geojson-pydantic",
24-
"pygeofilter==0.2.1",
2514
]
2615

2716
extra_reqs = {

stac_fastapi/opensearch/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# stac-fastapi-opensearch

stac_fastapi/opensearch/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
version = attr: stac_fastapi.core.version.__version__
2+
version = 0.1.0

stac_fastapi/opensearch/setup.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,11 @@
66
desc = f.read()
77

88
install_requires = [
9-
"fastapi",
10-
"attrs",
11-
"pydantic[dotenv]<2",
12-
"stac_pydantic==2.0.*",
13-
"stac-fastapi.types==2.4.9",
14-
"stac-fastapi.api==2.4.9",
15-
"stac-fastapi.extensions==2.4.9",
9+
"stac-fastapi.core==0.1.0",
1610
"opensearch-py==2.4.2",
1711
"opensearch-py[async]==2.4.2",
18-
"pystac[validation]",
1912
"uvicorn",
20-
"orjson",
21-
"overrides",
2213
"starlette",
23-
"geojson-pydantic",
24-
"pygeofilter==0.2.1",
2514
]
2615

2716
extra_reqs = {

0 commit comments

Comments
 (0)