Skip to content

Commit 13e55b0

Browse files
committed
rename
1 parent eb1a764 commit 13e55b0

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

infrastructure/aws/lambda/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import logging
44

5-
from app.main import app
65
from mangum import Mangum
6+
from titiler_md_demo.main import app
77

88
logging.getLogger("mangum.lifespan").setLevel(logging.ERROR)
99
logging.getLogger("mangum.http").setLevel(logging.ERROR)

runtimes/pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "app"
2+
name = "titiler-md-demo"
33
description = "Demo of titiler.xarray."
44
requires-python = ">=3.8"
55
authors = [
@@ -20,11 +20,12 @@ classifiers = [
2020
"Programming Language :: Python :: 3.9",
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2324
"Topic :: Scientific/Engineering :: GIS",
2425
]
2526
dynamic = ["version"]
2627
dependencies = [
27-
"titiler.xarray==0.19.0",
28+
"titiler.xarray==0.19.2",
2829
"fsspec",
2930
"h5netcdf",
3031
"zarr",
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@
55
import xarray
66
from attrs import define
77
from fastapi import Depends, Query
8-
from typing_extensions import Annotated
9-
108
from titiler.core.dependencies import DefaultDependency
119
from titiler.core.factory import FactoryExtension
1210
from titiler.xarray.dependencies import XarrayIOParams
1311
from titiler.xarray.factory import TilerFactory
1412
from titiler.xarray.io import xarray_open_dataset
13+
from typing_extensions import Annotated
1514

1615

1716
def VariableParams(
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
from starlette.responses import HTMLResponse
1010
from starlette.templating import Jinja2Templates
1111
from starlette_cramjam.middleware import CompressionMiddleware
12-
13-
from app.extensions import DimsExtension
14-
from app.settings import ApiSettings
1512
from titiler.core.errors import DEFAULT_STATUS_CODES, add_exception_handlers
1613
from titiler.core.factory import AlgorithmFactory, ColorMapFactory, TMSFactory
1714
from titiler.core.middleware import CacheControlMiddleware
1815
from titiler.xarray.extensions import VariablesExtension
1916
from titiler.xarray.factory import TilerFactory
2017

18+
from .extensions import DimsExtension
19+
from .settings import ApiSettings
20+
2121
api_settings = ApiSettings()
2222

2323
jinja2_env = jinja2.Environment(
File renamed without changes.

0 commit comments

Comments
 (0)