Skip to content

Commit c67ca2a

Browse files
authored
deps: update (#5)
1 parent c104b76 commit c67ca2a

File tree

4 files changed

+552
-939
lines changed

4 files changed

+552
-939
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"stac-fastapi-api>=5.0.2",
1313
"stac-fastapi-extensions>=5.0.2",
1414
"stac-fastapi-types>=5.0.2",
15-
"stacrs==0.6.0-beta.0",
15+
"rustac==0.6.0",
1616
]
1717
classifiers = [
1818
"Programming Language :: Python :: 3",
@@ -76,6 +76,7 @@ asyncio_default_fixture_loop_scope = "function"
7676
filterwarnings = [
7777
"error",
7878
'ignore:datetime.datetime.utcfromtimestamp\(\) is deprecated and scheduled for removal in a future version.:DeprecationWarning',
79+
"ignore:Using extra keyword arguments on `Field` is deprecated and will be removed.:pydantic.warnings.PydanticDeprecatedSince20",
7980
]
8081

8182
[tool.ruff.lint]

src/stac_fastapi/geoparquet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import tomllib
66
from fastapi import FastAPI
7-
from stacrs import DuckdbClient
7+
from rustac import DuckdbClient
88

99
import stac_fastapi.api.models
1010
from stac_fastapi.api.app import StacApi

src/stac_fastapi/geoparquet/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from fastapi import HTTPException
77
from pydantic import ValidationError
8-
from stacrs import DuckdbClient
8+
from rustac import DuckdbClient
99
from starlette.requests import Request
1010

1111
from stac_fastapi.api.models import BaseSearchPostRequest

0 commit comments

Comments
 (0)