Skip to content

Commit 109ab68

Browse files
committed
[DOP-28270] up version
1 parent e0d989b commit 109ab68

5 files changed

Lines changed: 17 additions & 16 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,8 @@ jobs:
4545
uses: astral-sh/setup-uv@v6
4646

4747
- name: Install dependencies
48-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
4948
run: |
50-
make venv
49+
make venv ARGS="--no-extra gssapi"
5150
5251
- name: Run Tests
5352
run: |

data_rentgen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.2
1+
0.4.0

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ RUN --mount=type=cache,target=/root/.cache/pip \
5050

5151
COPY ./pyproject.toml ./uv.lock ./
5252
RUN --mount=type=cache,target=/root/.cache/uv \
53-
uv sync --frozen --no-install-project --all-extras
53+
uv sync --frozen --no-install-project --all-extras \
54+
&& python -m compileall -j 4 .venv
5455

5556
FROM base AS prod
5657

pyproject.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dirty_template = "{tag}.dev{env:GITHUB_RUN_ID:{ccount}}"
1313
name = "data-rentgen"
1414
license = "Apache-2.0"
1515
description = "Data.Rentgen REST API + Kafka consumer"
16-
authors = [{name= "DataOps.ETL", email = "onetools@mts.ru"}]
16+
authors = [{name= "MWS Data Bridge", email = "onetools@mts.ru"}]
1717
readme = "README.rst"
1818
classifiers = [
1919
"Development Status :: 3 - Alpha",
@@ -30,8 +30,8 @@ classifiers = [
3030
keywords = ["Lineage", "FastAPI", "REST", "FastStream"]
3131
requires-python = ">=3.12"
3232
dependencies = [
33-
"pydantic >= 2.11.2",
34-
"typing-extensions >=4.13.1",
33+
"pydantic~=2.11.2",
34+
"typing-extensions~=4.13.1",
3535
]
3636
dynamic = ["version"]
3737

@@ -48,8 +48,8 @@ where = ["data_rentgen"]
4848

4949
[project.optional-dependencies]
5050
server = [
51-
"fastapi>=0.115.14,<0.117.0",
52-
"starlette>=0.46.2,<0.48.0",
51+
"fastapi~=0.116.1",
52+
"starlette~=0.47.2",
5353
"uvicorn~=0.35.0",
5454
"starlette-exporter~=0.23.0",
5555
"asgi-correlation-id~=4.3.4",
@@ -247,6 +247,7 @@ follow_untyped_imports = true
247247
docstring_style = "sphinx"
248248

249249
[tool.codespell]
250+
exclude-file="uv.lock"
250251
ignore-words-list = "selectin"
251252

252253
[tool.towncrier]

uv.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)