Skip to content

Commit 4474da8

Browse files
Merge pull request #193 from developmentseed/feature/update-starlette-cramjam-and-ruff
update starlette-cramjam and update ruff
2 parents ea1ef94 + 79dc328 commit 4474da8

9 files changed

+25
-31
lines changed

.pre-commit-config.yaml

+5-10
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,21 @@ repos:
44
hooks:
55
- id: validate-pyproject
66

7-
- repo: https://github.com/psf/black
8-
rev: 22.12.0
9-
hooks:
10-
- id: black
11-
language_version: python
12-
137
- repo: https://github.com/PyCQA/isort
14-
rev: 5.12.0
8+
rev: 5.13.2
159
hooks:
1610
- id: isort
1711
language_version: python
1812

19-
- repo: https://github.com/charliermarsh/ruff-pre-commit
20-
rev: v0.0.238
13+
- repo: https://github.com/astral-sh/ruff-pre-commit
14+
rev: v0.3.5
2115
hooks:
2216
- id: ruff
2317
args: ["--fix"]
18+
- id: ruff-format
2419

2520
- repo: https://github.com/pre-commit/mirrors-mypy
26-
rev: v1.3.0
21+
rev: v1.11.2
2722
hooks:
2823
- id: mypy
2924
language_version: python

CHANGES.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
88

99
## Unreleased
1010

11+
## [0.8.0] - TBD
12+
13+
* update starlette-cramjam dependency and set compression-level default to 6
14+
1115
## [0.7.3] - 2024-09-16
1216

1317
* add `TIPG_SORT_COLUMNS` settings to enable/disable columns sorting (default to `True`) (author @mattdiez-at, https://github.com/developmentseed/tipg/pull/187)
@@ -316,7 +320,9 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
316320

317321
- Initial release
318322

319-
[unreleased]: https://github.com/developmentseed/tipg/compare/0.7.2...HEAD
323+
[unreleased]: https://github.com/developmentseed/tipg/compare/0.8.0...HEAD
324+
[0.8.0]: https://github.com/developmentseed/tipg/compare/0.7.3...0.8.0
325+
[0.7.3]: https://github.com/developmentseed/tipg/compare/0.7.2...0.7.3
320326
[0.7.2]: https://github.com/developmentseed/tipg/compare/0.7.1...0.7.2
321327
[0.7.1]: https://github.com/developmentseed/tipg/compare/0.7.0...0.7.1
322328
[0.7.0]: https://github.com/developmentseed/tipg/compare/0.6.3...0.7.0

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
"geojson-pydantic>=1.0,<2.0",
3333
"pygeofilter>=0.2.0,<0.3.0",
3434
"ciso8601~=2.3",
35-
"starlette-cramjam>=0.3,<0.4",
35+
"starlette-cramjam>=0.4,<0.5",
3636
"importlib_resources>=1.1.0; python_version < '3.9'",
3737
"typing_extensions; python_version < '3.9'",
3838
]
@@ -117,7 +117,7 @@ default_section = "THIRDPARTY"
117117
[tool.mypy]
118118
no_strict_optional = "True"
119119

120-
[tool.ruff]
120+
[tool.ruff.lint]
121121
select = [
122122
"D1", # pydocstyle errors
123123
"E", # pycodestyle errors

tipg/collections.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -600,9 +600,7 @@ def _sortby(self, sortby: Optional[str]):
600600
sorts = []
601601
if sortby:
602602
for s in sortby.strip().split(","):
603-
parts = re.match(
604-
"^(?P<direction>[+-]?)(?P<column>.*)$", s
605-
).groupdict() # type:ignore
603+
parts = re.match("^(?P<direction>[+-]?)(?P<column>.*)$", s).groupdict() # type:ignore
606604

607605
direction = parts["direction"]
608606
column = parts["column"].strip()

tipg/dependencies.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def bbox_query(
189189
bbox: Annotated[
190190
Optional[str],
191191
Query(description="Spatial Filter."),
192-
] = None
192+
] = None,
193193
) -> Optional[List[float]]:
194194
"""BBox dependency."""
195195
if bbox:

tipg/factory.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -776,9 +776,7 @@ async def items( # noqa: C901
776776
MediaType.json,
777777
MediaType.ndjson,
778778
):
779-
if any(
780-
[f.get("geometry", None) is not None for f in item_list["items"]]
781-
):
779+
if any(f.get("geometry", None) is not None for f in item_list["items"]):
782780
rows = (
783781
{
784782
"collectionId": collection.id,

tipg/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async def lifespan(app: FastAPI):
101101
)
102102

103103
app.add_middleware(CacheControlMiddleware, cachecontrol=settings.cachecontrol)
104-
app.add_middleware(CompressionMiddleware)
104+
app.add_middleware(CompressionMiddleware, compression_level=6)
105105

106106
if settings.catalog_ttl:
107107
app.add_middleware(

tipg/middleware.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ async def send_wrapper(message: Message):
5252
scope["method"] in ["HEAD", "GET"]
5353
and message["status"] < self.cachecontrol_max_http_code
5454
and not any(
55-
[
56-
re.match(path, scope["path"])
57-
for path in self.exclude_path
58-
]
55+
re.match(path, scope["path"]) for path in self.exclude_path
5956
)
6057
):
6158
response_headers["Cache-Control"] = self.cachecontrol

tipg/model.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ class Queryables(BaseModel):
236236
title: str
237237
properties: Dict[str, Dict[str, str]]
238238
type: str = "object"
239-
schema_name: Annotated[
240-
str, Field(alias="$schema")
241-
] = "https://json-schema.org/draft/2019-09/schema"
239+
schema_name: Annotated[str, Field(alias="$schema")] = (
240+
"https://json-schema.org/draft/2019-09/schema"
241+
)
242242
link: Annotated[str, Field(alias="$id")]
243243

244244
model_config = {"populate_by_name": True}
@@ -391,9 +391,9 @@ class BoundingBox(BaseModel):
391391
),
392392
]
393393
crs: Annotated[Optional[CRSType], Field(json_schema_extra={"title": "CRS"})] = None
394-
orderedAxes: Annotated[
395-
Optional[List[str]], Field(max_length=2, min_length=2)
396-
] = None
394+
orderedAxes: Annotated[Optional[List[str]], Field(max_length=2, min_length=2)] = (
395+
None
396+
)
397397

398398

399399
# Ref: https://github.com/opengeospatial/ogcapi-tiles/blob/master/openapi/schemas/tms/propertiesSchema.yaml

0 commit comments

Comments
 (0)