Update dependencies
All checks were successful
release-nightly / release-image (push) Successful in 21m55s
All checks were successful
release-nightly / release-image (push) Successful in 21m55s
This commit was merged in pull request #9.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM docker.io/python:3.11-slim AS base
|
FROM docker.io/python:3.12-slim AS base
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
1302
poetry.lock
generated
1302
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -4,15 +4,6 @@ from projectorpi.cli import ProjectorSerial, ExtronSerial
|
|||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
from time import sleep
|
from time import sleep
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
import sentry_sdk
|
|
||||||
|
|
||||||
sentry_sdk.init(
|
|
||||||
dsn="https://8dce3a0f69f643c0a3547b8baf19d00b@sentry.marijndoeve.nl/3",
|
|
||||||
# Set traces_sample_rate to 1.0 to capture 100%
|
|
||||||
# of transactions for performance monitoring.
|
|
||||||
# We recommend adjusting this value in production,
|
|
||||||
traces_sample_rate=1.0,
|
|
||||||
)
|
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
|
|||||||
@@ -6,10 +6,9 @@ authors = ["Marijn Doeve <marijn@doeve.me>"]
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.9"
|
python = "^3.9"
|
||||||
fastapi = {extras = ["all"], version = "^0.101.0"}
|
fastapi = {extras = ["all"], version = "^0.110.1"}
|
||||||
pydantic = "^2.0.0"
|
pydantic = "^2.7.0"
|
||||||
projectorpi = {version = "^0.3.0", source = "gitea"}
|
projectorpi = {version = "^0.3.0", source = "gitea"}
|
||||||
sentry-sdk = {extras = ["fastapi"], version = "^1.25.0"}
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
mypy = "^1.3.0"
|
mypy = "^1.3.0"
|
||||||
|
|||||||
@@ -1,41 +1,39 @@
|
|||||||
--extra-index-url https://gitea.marijndoeve.nl/api/packages/Marijn/pypi/simple
|
--extra-index-url https://gitea.marijndoeve.nl/api/packages/Marijn/pypi/simple
|
||||||
|
|
||||||
annotated-types==0.5.0 ; python_version >= "3.9" and python_version < "4.0"
|
annotated-types==0.6.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
anyio==4.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
anyio==4.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
certifi==2023.7.22 ; python_version >= "3.9" and python_version < "4.0"
|
certifi==2024.2.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
click==8.1.7 ; python_version >= "3.9" and python_version < "4.0"
|
click==8.1.7 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "win32" or platform_system == "Windows")
|
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "win32" or platform_system == "Windows")
|
||||||
dnspython==2.4.2 ; python_version >= "3.9" and python_version < "4.0"
|
dnspython==2.6.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
email-validator==2.0.0.post2 ; python_version >= "3.9" and python_version < "4.0"
|
email-validator==2.1.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
exceptiongroup==1.1.3 ; python_version >= "3.9" and python_version < "3.11"
|
exceptiongroup==1.2.0 ; python_version >= "3.9" and python_version < "3.11"
|
||||||
fastapi==0.101.1 ; python_version >= "3.9" and python_version < "4.0"
|
fastapi[all]==0.110.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
fastapi[all]==0.101.1 ; python_version >= "3.9" and python_version < "4.0"
|
|
||||||
h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0"
|
h11==0.14.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
httpcore==0.18.0 ; python_version >= "3.9" and python_version < "4.0"
|
httpcore==1.0.5 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
httptools==0.6.0 ; python_version >= "3.9" and python_version < "4.0"
|
httptools==0.6.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
httpx==0.25.0 ; python_version >= "3.9" and python_version < "4.0"
|
httpx==0.27.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
idna==3.4 ; python_version >= "3.9" and python_version < "4.0"
|
idna==3.7 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
itsdangerous==2.1.2 ; python_version >= "3.9" and python_version < "4.0"
|
itsdangerous==2.1.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
jinja2==3.1.2 ; python_version >= "3.9" and python_version < "4.0"
|
jinja2==3.1.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
markupsafe==2.1.3 ; python_version >= "3.9" and python_version < "4.0"
|
markupsafe==2.1.5 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
orjson==3.9.7 ; python_version >= "3.9" and python_version < "4.0"
|
orjson==3.10.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
projectorpi==0.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
projectorpi==0.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
pydantic-core==2.6.3 ; python_version >= "3.9" and python_version < "4.0"
|
pydantic-core==2.18.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
pydantic-extra-types==2.1.0 ; python_version >= "3.9" and python_version < "4.0"
|
pydantic-extra-types==2.6.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
pydantic-settings==2.0.3 ; python_version >= "3.9" and python_version < "4.0"
|
pydantic-settings==2.2.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
pydantic==2.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
pydantic==2.7.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
pyserial==3.5 ; python_version >= "3.9" and python_version < "4.0"
|
pyserial==3.5 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
python-dotenv==1.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
python-dotenv==1.0.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
python-multipart==0.0.6 ; python_version >= "3.9" and python_version < "4.0"
|
python-multipart==0.0.9 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4.0"
|
pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
sentry-sdk==1.31.0 ; python_version >= "3.9" and python_version < "4.0"
|
sentry-sdk==1.45.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
sentry-sdk[fastapi]==1.31.0 ; python_version >= "3.9" and python_version < "4.0"
|
sniffio==1.3.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
sniffio==1.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
starlette==0.37.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
starlette==0.27.0 ; python_version >= "3.9" and python_version < "4.0"
|
typing-extensions==4.11.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
typing-extensions==4.8.0 ; python_version >= "3.9" and python_version < "4.0"
|
ujson==5.9.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
ujson==5.8.0 ; python_version >= "3.9" and python_version < "4.0"
|
urllib3==2.2.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
urllib3==2.0.5 ; python_version >= "3.9" and python_version < "4.0"
|
uvicorn[standard]==0.29.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
uvicorn[standard]==0.23.2 ; python_version >= "3.9" and python_version < "4.0"
|
uvloop==0.19.0 ; (sys_platform != "win32" and sys_platform != "cygwin") and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4.0"
|
||||||
uvloop==0.17.0 ; (sys_platform != "win32" and sys_platform != "cygwin") and platform_python_implementation != "PyPy" and python_version >= "3.9" and python_version < "4.0"
|
watchfiles==0.21.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
watchfiles==0.20.0 ; python_version >= "3.9" and python_version < "4.0"
|
websockets==12.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||||
websockets==11.0.3 ; python_version >= "3.9" and python_version < "4.0"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user