Update most python dependencies (#2308)

* Change routes to return HTTP.OK instead of HTTP.NO_CONTENT.
This commit is contained in:
SnappyComebacks 2022-07-10 16:54:58 -06:00 committed by GitHub
parent e60cde892a
commit cbb81bbba7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 41 additions and 41 deletions

View File

@ -11,7 +11,7 @@ router: APIRouter = APIRouter(prefix="/qt")
@router.post(
"/create-package/front-line/{front_line_id}",
operation_id="open_new_front_line_package_dialog",
status_code=status.HTTP_204_NO_CONTENT,
status_code=status.HTTP_200_OK,
)
def new_front_line_package(
front_line_id: UUID,
@ -24,7 +24,7 @@ def new_front_line_package(
@router.post(
"/create-package/tgo/{tgo_id}",
operation_id="open_new_tgo_package_dialog",
status_code=status.HTTP_204_NO_CONTENT,
status_code=status.HTTP_200_OK,
)
def new_tgo_package(
tgo_id: UUID,
@ -37,7 +37,7 @@ def new_tgo_package(
@router.post(
"/info/tgo/{tgo_id}",
operation_id="open_tgo_info_dialog",
status_code=status.HTTP_204_NO_CONTENT,
status_code=status.HTTP_200_OK,
)
def show_tgo_info(
tgo_id: UUID,
@ -50,7 +50,7 @@ def show_tgo_info(
@router.post(
"/create-package/control-point/{cp_id}",
operation_id="open_new_control_point_package_dialog",
status_code=status.HTTP_204_NO_CONTENT,
status_code=status.HTTP_200_OK,
)
def new_cp_package(
cp_id: UUID,
@ -69,7 +69,7 @@ def new_cp_package(
@router.post(
"/info/control-point/{cp_id}",
operation_id="open_control_point_info_dialog",
status_code=status.HTTP_204_NO_CONTENT,
status_code=status.HTTP_200_OK,
)
def show_control_point_info(
cp_id: UUID,

View File

@ -1,64 +1,64 @@
altgraph==0.17.2
anyio==3.5.0
asgiref==3.5.0
atomicwrites==1.4.0
anyio==3.6.1
asgiref==3.5.2
atomicwrites==1.4.1
attrs==21.4.0
black==22.6.0
certifi==2021.10.8
certifi==2022.6.15
cfgv==3.3.1
click==8.1.3
colorama==0.4.4
colorama==0.4.5
distlib==0.3.4
Faker==12.3.0
fastapi==0.73.0
filelock==3.4.2
Faker==13.15.0
fastapi==0.78.0
filelock==3.7.1
future==0.18.2
h11==0.13.0
httptools==0.3.0
identify==2.4.9
httptools==0.4.0
identify==2.5.1
idna==3.3
iniconfig==1.1.1
Jinja2==3.0.3
MarkupSafe==2.0.1
mypy==0.931
Jinja2==3.1.2
MarkupSafe==2.1.1
mypy==0.961
mypy-extensions==0.4.3
nodeenv==1.6.0
nodeenv==1.7.0
packaging==21.3
pathspec==0.9.0
pefile==2021.9.3
Pillow==9.0.1
platformdirs==2.5.0
pefile==2022.5.30
Pillow==9.2.0
platformdirs==2.5.2
pluggy==1.0.0
pre-commit==2.17.0
pre-commit==2.19.0
py==1.11.0
pydantic==1.9.0
pydantic==1.9.1
-e git+https://github.com/pydcs/dcs@4888925904cf60fda2f98a1da0dca382cc926084#egg=pydcs
pyinstaller==4.9
pyinstaller-hooks-contrib==2022.1
pyparsing==3.0.7
pyproj==3.3.0
pyinstaller==5.2
pyinstaller-hooks-contrib==2022.8
pyparsing==3.0.9
pyproj==3.3.1
PySide2==5.15.2.1
pytest==7.0.1
pytest==7.1.2
python-dateutil==2.8.2
python-dotenv==0.19.2
python-dotenv==0.20.0
pywin32-ctypes==0.2.0
PyYAML==6.0
./wheels/Shapely-1.8.0-cp310-cp310-win_amd64.whl
./wheels/Shapely-1.8.2-cp310-cp310-win_amd64.whl
shiboken2==5.15.2.1
six==1.16.0
sniffio==1.2.0
starlette==0.17.1
tabulate==0.8.9
starlette==0.19.1
tabulate==0.8.10
text-unidecode==1.3
toml==0.10.2
tomli==2.0.1
types-Jinja2==2.11.9
types-MarkupSafe==1.1.10
types-Pillow==9.0.6
types-PyYAML==6.0.4
types-tabulate==0.8.5
typing_extensions==4.0.1
uvicorn==0.17.4
virtualenv==20.13.1
watchgod==0.7
websockets==10.1
types-Pillow==9.2.0
types-PyYAML==6.0.9
types-tabulate==0.8.11
typing_extensions==4.3.0
uvicorn==0.18.2
virtualenv==20.15.1
watchgod==0.8.2
websockets==10.3

Binary file not shown.