* Upgrade uvicorn

* Pin version of Azurite due to bug in upsert

A recent release of Azurite caused tests with upserts to fail due to
https://github.com/Azure/Azurite/issues/1565.
This commit is contained in:
Matt McFarland 2022-06-24 15:36:57 -04:00 коммит произвёл GitHub
Родитель 61e8479cfe
Коммит 3f0016b56d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -68,7 +68,7 @@ services:
- pc-apis-pgdata:/var/lib/postgresql/data
azurite:
container_name: pcapis-azurite
image: mcr.microsoft.com/azure-storage/azurite
image: mcr.microsoft.com/azure-storage/azurite:3.17.1
hostname: azurite
command: "azurite --silent --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost
0.0.0.0 -l /workspace"

Просмотреть файл

@ -10,7 +10,7 @@ inst_reqs = [
"stac-fastapi.types @ git+https://github.com/stac-utils/stac-fastapi/@162a1a2c324b4c2bfe3451f7ae19d7840a0e0452#egg=stac-fastapi.types&subdirectory=stac_fastapi/types",
"pccommon",
# Required due to some imports related to pypgstac CLI usage in startup script
"pypgstac[psycopg]==0.6.2",
"pypgstac[psycopg]==0.6.6",
"pystac==1.*",
]
@ -29,7 +29,7 @@ extra_reqs = {
],
# server deps
"server": [
"uvicorn[standard]>=0.12.0,<0.16.0",
"uvicorn[standard]>=0.17.0,<0.18.0",
],
}

Просмотреть файл

@ -39,7 +39,7 @@ extra_reqs = {
],
# server deps
"server": [
"uvicorn[standard]>=0.12.0,<0.16.0",
"uvicorn[standard]>=0.17.0,<0.18.0",
],
}