Skip to content

Commit e3b8df5

Browse files
cwehmeierVijoPlays
andauthored
KIT-4261 update libs (#10)
* KIT-4261 update libs * Bump version --------- Co-authored-by: aott <ottalexanderdev@gmail.com>
1 parent 97966be commit e3b8df5

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
]
4242
}
4343
},
44-
"initializeCommand": "powershell.exe .\\.devcontainer\\initialize.ps1",
44+
"initializeCommand": "powershell.exe ./.devcontainer/initialize.ps1",
4545
"postCreateCommand": "python -m pip install --upgrade pip; pip3 install -r ${containerWorkspaceFolder}/requirements-dev.txt",
4646
"remoteUser": "vscode",
4747
"mounts": [

pyproject.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sag-py-web-common"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = "Small helper functions for web projects"
55
authors = ["Samhammer AG"]
66
license = "MIT"
@@ -9,13 +9,14 @@ readme = "README.md"
99
[tool.poetry.dependencies]
1010
python = "^3.12"
1111
asgi-logger = "^0.1.0"
12-
fastapi = "^0.110.3"
12+
fastapi = ">=0.110.3,<1.0.0"
13+
starlette = "*"
1314

1415
[tool.poetry.group.dev.dependencies]
15-
anyio = ">=4.4.0"
16-
build = ">=1.1.1"
16+
anyio = ">=4.9.0"
17+
build = ">=1.2.2.post1"
1718
coverage-lcov = "*"
18-
flake8 = ">=5.0.4"
19+
flake8 = ">=7.2.0"
1920
httpx = "*"
2021
mock = "*"
2122
mypy = "*"
@@ -24,7 +25,7 @@ pytest-asyncio = "*"
2425
pytest-cov = "*"
2526
toml = "*"
2627
types-mock = "*"
27-
zipp = ">=3.19.1"
28+
zipp = ">=3.21.0"
2829

2930
[build-system]
3031
requires = ["setuptools>=61.0"]

requirements-dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
-r requirements.txt
2-
anyio >= 4.8.0
3-
build >= 1.1.1
2+
anyio >= 4.9.0
3+
build >= 1.2.2.post1
44
coverage
55
coverage-lcov
6-
flake8>=5.0.4
6+
flake8>=7.2.0
77
httpx >= 0.28.1
88
mock
99
mypy
1010
pytest
1111
pytest-asyncio
1212
pytest-cov
13-
starlette >= 0.40.0
13+
starlette >= 0.46.2
1414
# Toml and coverage temporarely fixes compatibility issues between coverage-lcov and coverage
1515
# see for details: https://github.com/theupdateframework/python-tuf/issues/2254
1616
toml
1717
types-mock
18-
zipp >= 3.19.1
18+
zipp >= 3.21.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
asgi-logger>=0.1.0
2-
fastapi>=0.110.3
2+
fastapi>=0.115.12, <1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setuptools.setup(
1313
name="sag-py-web-common",
14-
version="1.0.3",
14+
version="1.0.4",
1515
description="Small helper functions for web projects",
1616
long_description=LONG_DESCRIPTION,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)