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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sag-py-fastapi-health"
version = "0.3.4"
version = "0.3.5"
description = "A library for fastapi health checks"
authors = ["Samhammer AG"]
license = "MIT"
Expand All @@ -11,6 +11,7 @@ python = "^3.12"
aiohttp = { version = ">=3.9.4", extras = ["speedups"] }
fastapi = ">=0.109.1"
pydantic = ">=2.5.3"
typing-extensions = ">=4.15.0"

[tool.poetry.group.dev.dependencies]
build = "*"
Expand All @@ -24,7 +25,6 @@ pytest-asyncio = "*"
pytest-cov = "*"
toml = "*"
types-mock = "*"
zipp = ">=3.21.0"

[build-system]
requires = ["setuptools>=61.0"]
Expand Down
6 changes: 0 additions & 6 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ build
pytest
pytest-asyncio
pytest-cov
# Toml and coverage temporarely fixes compatibility issues between coverage-lcov and coverage
# see for details: https://github.com/theupdateframework/python-tuf/issues/2254
coverage-lcov
toml
coverage
mock
types-mock

zipp>=3.21.0 # only a vulnerability fix: introduced through pydantic (we don't need this package ourselves)
10 changes: 4 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
aiohttp[speedups]>=3.9.4,<4
fastapi>=0.115.12, <1
pydantic>=2.5.3
typing-extensions>=4.0.0

zipp>=3.21.0 # only a vulnerability fix: introduced through pydantic (we don't need this package ourselves)
aiohttp[speedups]>=3.13.3,<4
fastapi>=0.128.7, <1
pydantic>=2.12.2
typing-extensions>=4.15.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="sag-py-fastapi-health",
version="0.3.4",
version="0.3.5",
description="A library for fastapi health checks",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
Expand Down