Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG OPENAPI_SPEC_VALIDATOR_VERSION=0.8.5

FROM python:3.14.3-alpine as builder
FROM python:3.14.5-alpine as builder

ARG OPENAPI_SPEC_VALIDATOR_VERSION

Expand All @@ -9,7 +9,7 @@ ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN apk add --no-cache cargo
RUN python -m pip wheel --wheel-dir /wheels openapi-spec-validator==${OPENAPI_SPEC_VALIDATOR_VERSION}

FROM python:3.14.3-alpine
FROM python:3.14.5-alpine

ARG OPENAPI_SPEC_VALIDATOR_VERSION

Expand Down
14 changes: 7 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Typing :: Typed",
]
dependencies = [
"jsonschema >=4.24.0,<5.0.0",
"jsonschema >=4.26.0,<5.0.0",
"openapi-schema-validator >=0.7.3,<0.9.0",
"jsonschema-path >=0.4.3,<0.5.0",
"lazy-object-proxy >=1.7.1,<2.0",
Expand Down
Loading