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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
]
}
},
"initializeCommand": "powershell.exe .\\.devcontainer\\initialize.ps1",
"initializeCommand": "powershell.exe ./.devcontainer/initialize.ps1",
"postCreateCommand": "python -m pip install --upgrade pip; pip3 install -r ${containerWorkspaceFolder}/requirements-dev.txt",
"remoteUser": "vscode",
"mounts": [
Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sag-py-web-common"
version = "1.0.3"
version = "1.0.4"
description = "Small helper functions for web projects"
authors = ["Samhammer AG"]
license = "MIT"
Expand All @@ -9,13 +9,14 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
asgi-logger = "^0.1.0"
fastapi = "^0.110.3"
fastapi = ">=0.110.3,<1.0.0"
starlette = "*"

[tool.poetry.group.dev.dependencies]
anyio = ">=4.4.0"
build = ">=1.1.1"
anyio = ">=4.9.0"
build = ">=1.2.2.post1"
coverage-lcov = "*"
flake8 = ">=5.0.4"
flake8 = ">=7.2.0"
httpx = "*"
mock = "*"
mypy = "*"
Expand All @@ -24,7 +25,7 @@ pytest-asyncio = "*"
pytest-cov = "*"
toml = "*"
types-mock = "*"
zipp = ">=3.19.1"
zipp = ">=3.21.0"

[build-system]
requires = ["setuptools>=61.0"]
Expand Down
10 changes: 5 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
-r requirements.txt
anyio >= 4.8.0
build >= 1.1.1
anyio >= 4.9.0
build >= 1.2.2.post1
coverage
coverage-lcov
flake8>=5.0.4
flake8>=7.2.0
httpx >= 0.28.1
mock
mypy
pytest
pytest-asyncio
pytest-cov
starlette >= 0.40.0
starlette >= 0.46.2
# Toml and coverage temporarely fixes compatibility issues between coverage-lcov and coverage
# see for details: https://github.com/theupdateframework/python-tuf/issues/2254
toml
types-mock
zipp >= 3.19.1
zipp >= 3.21.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
asgi-logger>=0.1.0
fastapi>=0.110.3
fastapi>=0.115.12, <1
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-web-common",
version="1.0.3",
version="1.0.4",
description="Small helper functions for web projects",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
Expand Down