Skip to content

Commit 0770ae1

Browse files
cwehmeierVijoPlays
andauthored
KIT-4266 update libs (#6)
* KIT-4266 update libs * Bump package version --------- Co-authored-by: aott <ottalexanderdev@gmail.com>
1 parent 77a2393 commit 0770ae1

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
]
4444
}
4545
},
46-
"initializeCommand": "powershell.exe .\\.devcontainer\\initialize.ps1",
46+
"initializeCommand": "powershell.exe ./.devcontainer/initialize.ps1",
4747
"postCreateCommand": "pip3 install -r ${containerWorkspaceFolder}/requirements-dev.txt",
4848
"remoteUser": "vscode",
4949
"mounts": [

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sag-py-fastapi-request-id"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Adds an unique identifiert to fastapi requests"
55
authors = ["Samhammer AG"]
66
license = "MIT"
@@ -9,19 +9,19 @@ readme = "README.md"
99
[tool.poetry.dependencies]
1010
python = "^3.12"
1111
contextvars = "^2.4"
12-
starlette = "^0.37.2"
12+
starlette = ">=0.46.2"
1313

1414
[tool.poetry.group.dev.dependencies]
1515
build = ">=1.1.1"
1616
coverage-lcov = "*"
17-
flake8 = ">=5.0.4"
17+
flake8 = ">=7.2.0"
1818
mock = "*"
1919
mypy = "*"
2020
pytest = "*"
2121
pytest-asyncio = "*"
2222
pytest-cov = "*"
2323
types-mock = "*"
24-
zipp = ">=3.19.1"
24+
zipp = ">=3.21.0"
2525

2626
[build-system]
2727
requires = ["setuptools>=61.0"]

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r requirements.txt
2-
flake8>=5.0.4
2+
flake8>=7.2.0
33
mypy
4-
build>=1.1.1
4+
build>=1.2.2.post1
55

66
pytest
77
pytest-asyncio
@@ -15,4 +15,4 @@ coverage
1515

1616
mock
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
contextvars>=2.4
2-
starlette>=0.37.2
2+
starlette>=0.46.2

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-fastapi-request-id",
14-
version="1.0.1",
14+
version="1.0.2",
1515
description="Adds an unique identifiert to fastapi requests",
1616
long_description=LONG_DESCRIPTION,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)