Skip to content

Commit 32ab49d

Browse files
TEAM4-0CasperWA
andcommitted
[Auto-generated] Update requirements.txt (#645)
* Update `requirements.txt` * Update to avoid deprecation warning --------- Co-authored-by: Casper Welzel Andersen <casper.w.andersen@sintef.no>
1 parent 74155d6 commit 32ab49d

7 files changed

Lines changed: 17 additions & 18 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
fastapi-slim>=0.116.1
1+
fastapi-slim>=0.117.1
22
hypercorn>=0.17.3
33
oteapi-core>=1.0.0
4-
pydantic>=2.11.7
4+
pydantic>=2.11.9
55
pydantic-settings>=2.10.1
66
redis>=6.4.0
77
tenacity>=9.1.2

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
**Merged pull requests:**
88

9-
- \[pre-commit.ci\] pre-commit autoupdate [\#644](https://github.com/EMMC-ASBL/oteapi-services/pull/644) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
109
- \[pre-commit.ci\] pre-commit autoupdate [\#616](https://github.com/EMMC-ASBL/oteapi-services/pull/616) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
1110

1211
## [v1.20250410.410](https://github.com/EMMC-ASBL/oteapi-services/tree/v1.20250410.410) (2025-04-10)

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
from __future__ import annotations
88

9-
__version__ = "1.20250916.451"
9+
__version__ = "1.20250922.452"
1010
__author__ = "SINTEF"
1111
__author_email__ = "Team4.0@SINTEF.no"

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def create_app() -> FastAPI:
149149
app.include_router(
150150
router,
151151
responses={
152-
status.HTTP_422_UNPROCESSABLE_ENTITY: {
152+
status.HTTP_422_UNPROCESSABLE_CONTENT: {
153153
"description": "Validation Error",
154154
"model": HTTPValidationError,
155155
},

app/models/error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def httpexception_404_item_id_does_not_exist(
4545
def httpexception_422_resource_id_is_unprocessable(resource_id: str) -> HTTPException:
4646
"""return 422 Exception with resource_id."""
4747
return HTTPException(
48-
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
48+
status_code=status.HTTP_422_UNPROCESSABLE_CONTENT,
4949
detail=[
5050
{
5151
"loc": ["resource_id"],

app/routers/dataresource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
tags=["dataresource"],
3030
responses={
3131
status.HTTP_404_NOT_FOUND: {"model": HTTPNotFoundError},
32-
status.HTTP_422_UNPROCESSABLE_ENTITY: {"model": HTTPValidationError},
32+
status.HTTP_422_UNPROCESSABLE_CONTENT: {"model": HTTPValidationError},
3333
},
3434
)
3535

requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ annotated-types==0.7.0
33
anyio==4.10.0
44
async-timeout==5.0.1
55
bcrypt==4.3.0
6-
billiard==4.2.1
6+
billiard==4.2.2
77
celery==5.5.3
88
certifi==2025.8.3
9-
cffi==1.17.1
9+
cffi==2.0.0
1010
charset-normalizer==3.4.3
11-
click==8.2.1
11+
click==8.3.0
1212
click-didyoumean==0.3.1
1313
click-plugins==1.1.1.2
1414
click-repl==0.3.0
15-
cryptography==45.0.6
15+
cryptography==46.0.1
1616
diskcache==5.6.3
1717
et_xmlfile==2.0.0
1818
exceptiongroup==1.3.0
19-
fastapi-slim==0.116.1
19+
fastapi-slim==0.117.1
2020
h11==0.16.0
2121
h2==4.3.0
2222
hpack==4.1.0
@@ -32,21 +32,21 @@ paramiko==4.0.0
3232
pillow==11.3.0
3333
priority==2.0.0
3434
prompt_toolkit==3.0.52
35-
psycopg==3.2.9
36-
psycopg-binary==3.2.9
37-
pycparser==2.22
38-
pydantic==2.11.7
35+
psycopg==3.2.10
36+
psycopg-binary==3.2.10
37+
pycparser==2.23
38+
pydantic==2.11.9
3939
pydantic-settings==2.10.1
4040
pydantic_core==2.33.2
41-
PyNaCl==1.5.0
41+
PyNaCl==1.6.0
4242
pysftp==0.2.9
4343
python-dateutil==2.9.0.post0
4444
python-dotenv==1.1.1
4545
redis==6.4.0
4646
requests==2.32.5
4747
six==1.17.0
4848
sniffio==1.3.1
49-
starlette==0.47.3
49+
starlette==0.48.0
5050
taskgroup==0.2.2
5151
tenacity==9.1.2
5252
tomli==2.2.1

0 commit comments

Comments
 (0)