mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Update most python dependencies (#2308)
* Change routes to return HTTP.OK instead of HTTP.NO_CONTENT.
This commit is contained in:
parent
e60cde892a
commit
cbb81bbba7
@ -11,7 +11,7 @@ router: APIRouter = APIRouter(prefix="/qt")
|
|||||||
@router.post(
|
@router.post(
|
||||||
"/create-package/front-line/{front_line_id}",
|
"/create-package/front-line/{front_line_id}",
|
||||||
operation_id="open_new_front_line_package_dialog",
|
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(
|
def new_front_line_package(
|
||||||
front_line_id: UUID,
|
front_line_id: UUID,
|
||||||
@ -24,7 +24,7 @@ def new_front_line_package(
|
|||||||
@router.post(
|
@router.post(
|
||||||
"/create-package/tgo/{tgo_id}",
|
"/create-package/tgo/{tgo_id}",
|
||||||
operation_id="open_new_tgo_package_dialog",
|
operation_id="open_new_tgo_package_dialog",
|
||||||
status_code=status.HTTP_204_NO_CONTENT,
|
status_code=status.HTTP_200_OK,
|
||||||
)
|
)
|
||||||
def new_tgo_package(
|
def new_tgo_package(
|
||||||
tgo_id: UUID,
|
tgo_id: UUID,
|
||||||
@ -37,7 +37,7 @@ def new_tgo_package(
|
|||||||
@router.post(
|
@router.post(
|
||||||
"/info/tgo/{tgo_id}",
|
"/info/tgo/{tgo_id}",
|
||||||
operation_id="open_tgo_info_dialog",
|
operation_id="open_tgo_info_dialog",
|
||||||
status_code=status.HTTP_204_NO_CONTENT,
|
status_code=status.HTTP_200_OK,
|
||||||
)
|
)
|
||||||
def show_tgo_info(
|
def show_tgo_info(
|
||||||
tgo_id: UUID,
|
tgo_id: UUID,
|
||||||
@ -50,7 +50,7 @@ def show_tgo_info(
|
|||||||
@router.post(
|
@router.post(
|
||||||
"/create-package/control-point/{cp_id}",
|
"/create-package/control-point/{cp_id}",
|
||||||
operation_id="open_new_control_point_package_dialog",
|
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(
|
def new_cp_package(
|
||||||
cp_id: UUID,
|
cp_id: UUID,
|
||||||
@ -69,7 +69,7 @@ def new_cp_package(
|
|||||||
@router.post(
|
@router.post(
|
||||||
"/info/control-point/{cp_id}",
|
"/info/control-point/{cp_id}",
|
||||||
operation_id="open_control_point_info_dialog",
|
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(
|
def show_control_point_info(
|
||||||
cp_id: UUID,
|
cp_id: UUID,
|
||||||
|
|||||||
@ -1,64 +1,64 @@
|
|||||||
altgraph==0.17.2
|
altgraph==0.17.2
|
||||||
anyio==3.5.0
|
anyio==3.6.1
|
||||||
asgiref==3.5.0
|
asgiref==3.5.2
|
||||||
atomicwrites==1.4.0
|
atomicwrites==1.4.1
|
||||||
attrs==21.4.0
|
attrs==21.4.0
|
||||||
black==22.6.0
|
black==22.6.0
|
||||||
certifi==2021.10.8
|
certifi==2022.6.15
|
||||||
cfgv==3.3.1
|
cfgv==3.3.1
|
||||||
click==8.1.3
|
click==8.1.3
|
||||||
colorama==0.4.4
|
colorama==0.4.5
|
||||||
distlib==0.3.4
|
distlib==0.3.4
|
||||||
Faker==12.3.0
|
Faker==13.15.0
|
||||||
fastapi==0.73.0
|
fastapi==0.78.0
|
||||||
filelock==3.4.2
|
filelock==3.7.1
|
||||||
future==0.18.2
|
future==0.18.2
|
||||||
h11==0.13.0
|
h11==0.13.0
|
||||||
httptools==0.3.0
|
httptools==0.4.0
|
||||||
identify==2.4.9
|
identify==2.5.1
|
||||||
idna==3.3
|
idna==3.3
|
||||||
iniconfig==1.1.1
|
iniconfig==1.1.1
|
||||||
Jinja2==3.0.3
|
Jinja2==3.1.2
|
||||||
MarkupSafe==2.0.1
|
MarkupSafe==2.1.1
|
||||||
mypy==0.931
|
mypy==0.961
|
||||||
mypy-extensions==0.4.3
|
mypy-extensions==0.4.3
|
||||||
nodeenv==1.6.0
|
nodeenv==1.7.0
|
||||||
packaging==21.3
|
packaging==21.3
|
||||||
pathspec==0.9.0
|
pathspec==0.9.0
|
||||||
pefile==2021.9.3
|
pefile==2022.5.30
|
||||||
Pillow==9.0.1
|
Pillow==9.2.0
|
||||||
platformdirs==2.5.0
|
platformdirs==2.5.2
|
||||||
pluggy==1.0.0
|
pluggy==1.0.0
|
||||||
pre-commit==2.17.0
|
pre-commit==2.19.0
|
||||||
py==1.11.0
|
py==1.11.0
|
||||||
pydantic==1.9.0
|
pydantic==1.9.1
|
||||||
-e git+https://github.com/pydcs/dcs@4888925904cf60fda2f98a1da0dca382cc926084#egg=pydcs
|
-e git+https://github.com/pydcs/dcs@4888925904cf60fda2f98a1da0dca382cc926084#egg=pydcs
|
||||||
pyinstaller==4.9
|
pyinstaller==5.2
|
||||||
pyinstaller-hooks-contrib==2022.1
|
pyinstaller-hooks-contrib==2022.8
|
||||||
pyparsing==3.0.7
|
pyparsing==3.0.9
|
||||||
pyproj==3.3.0
|
pyproj==3.3.1
|
||||||
PySide2==5.15.2.1
|
PySide2==5.15.2.1
|
||||||
pytest==7.0.1
|
pytest==7.1.2
|
||||||
python-dateutil==2.8.2
|
python-dateutil==2.8.2
|
||||||
python-dotenv==0.19.2
|
python-dotenv==0.20.0
|
||||||
pywin32-ctypes==0.2.0
|
pywin32-ctypes==0.2.0
|
||||||
PyYAML==6.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
|
shiboken2==5.15.2.1
|
||||||
six==1.16.0
|
six==1.16.0
|
||||||
sniffio==1.2.0
|
sniffio==1.2.0
|
||||||
starlette==0.17.1
|
starlette==0.19.1
|
||||||
tabulate==0.8.9
|
tabulate==0.8.10
|
||||||
text-unidecode==1.3
|
text-unidecode==1.3
|
||||||
toml==0.10.2
|
toml==0.10.2
|
||||||
tomli==2.0.1
|
tomli==2.0.1
|
||||||
types-Jinja2==2.11.9
|
types-Jinja2==2.11.9
|
||||||
types-MarkupSafe==1.1.10
|
types-MarkupSafe==1.1.10
|
||||||
types-Pillow==9.0.6
|
types-Pillow==9.2.0
|
||||||
types-PyYAML==6.0.4
|
types-PyYAML==6.0.9
|
||||||
types-tabulate==0.8.5
|
types-tabulate==0.8.11
|
||||||
typing_extensions==4.0.1
|
typing_extensions==4.3.0
|
||||||
uvicorn==0.17.4
|
uvicorn==0.18.2
|
||||||
virtualenv==20.13.1
|
virtualenv==20.15.1
|
||||||
watchgod==0.7
|
watchgod==0.8.2
|
||||||
websockets==10.1
|
websockets==10.3
|
||||||
|
|||||||
Binary file not shown.
BIN
wheels/Shapely-1.8.2-cp310-cp310-win_amd64.whl
Normal file
BIN
wheels/Shapely-1.8.2-cp310-cp310-win_amd64.whl
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user