File tree Expand file tree Collapse file tree 7 files changed +18
-3
lines changed
Expand file tree Collapse file tree 7 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ ARG BASE_IMAGE=python:3.11-slim
22FROM $BASE_IMAGE AS prod
33
44RUN apt-get update && apt-get install -y \
5+ krb5-user \
56 libkrb5-dev \
67 libsasl2-dev \
78 libsasl2-modules-gssapi-mit \
Original file line number Diff line number Diff line change 1+ 0.1.4 (2024-04-15)
2+ ==================
3+
4+ Bug Fixes
5+ ----------
6+
7+ - Fix missing backend factory for uvicorn.
8+ - Fix missing ``kinit `` executable in worker image.
Original file line number Diff line number Diff line change 33 :caption: Changelog
44
55 DRAFT
6+ 0.1.4
67 0.1.3
78 0.1.2
89 0.1.1
Original file line number Diff line number Diff line change 3636# The short X.Y version.
3737
3838# this value is updated automatically by `poetry version ...` and poetry-bumpversion plugin
39- ver = Version .parse ("0.1.3 " )
39+ ver = Version .parse ("0.1.4 " )
4040version = ver .base_version
4141# The full version, including alpha/beta/rc tags.
4242release = ver .public
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " data-syncmaster"
3- version = " 0.1.3 "
3+ version = " 0.1.4 "
44license = " Apache-2.0"
55description = " Syncmaster REST API + Worker"
66authors = [
" DataOps.ETL <[email protected] >" ]
@@ -200,6 +200,7 @@ exclude_lines = [
200200
201201
202202
203+
203204[tool .poetry .group .docs .dependencies ]
204205autodoc-pydantic = {version = " ^2.0.1" , python = " >=3.8" }
205206numpydoc = {version = " ^1.6.0" , python = " >=3.8" }
Original file line number Diff line number Diff line change 11# SPDX-FileCopyrightText: 2023-2024 MTS (Mobile Telesystems)
22# SPDX-License-Identifier: Apache-2.0
33
4- _raw_version = "0.1.3 "
4+ _raw_version = "0.1.4 "
55# version always contain only release number like 0.0.1
66__version__ = "." .join (_raw_version .split ("." )[:3 ]) # noqa: WPS410
Original file line number Diff line number Diff line change @@ -54,3 +54,7 @@ def application_factory(settings: Settings) -> FastAPI:
5454 )
5555
5656 return application
57+
58+
59+ def get_application () -> FastAPI :
60+ return application_factory (settings = Settings ())
You can’t perform that action at this time.
0 commit comments