Skip to content

Commit

Permalink
Merge pull request #79 from pamelafox/dependabot/pip/fastapi-0.111.0
Browse files Browse the repository at this point in the history
Bump fastapi from 0.110.2 to 0.111.0
  • Loading branch information
pamelafox committed May 6, 2024
2 parents 5d7c383 + e18f3cb commit 8fcc358
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ which relies on the `azure.yaml` file and the configuration files in the `infra`
Steps for deployment:

1. Sign up for a [free Azure account](https://azure.microsoft.com/free/) and create an Azure Subscription.
3. Login to Azure:
2. Login to Azure:

```shell
azd auth login
Expand Down
2 changes: 1 addition & 1 deletion function/fastapi_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ImageResponse(fastapi.responses.Response):
responses={200: {"content": {"image/png": {"schema": {"type": "string", "format": "binary"}}}}},
)
def generate_map(
center: str = fastapi.Query(example="40.714728,-73.998672", regex=r"^-?\d+(\.\d+)?,-?\d+(\.\d+)?$"),
center: str = fastapi.Query(example="40.714728,-73.998672", pattern=r"^-?\d+(\.\d+)?,-?\d+(\.\d+)?$"),
zoom: int = fastapi.Query(example=12, ge=0, le=30),
width: int = 400,
height: int = 400,
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
-r requirements.txt
fastapi[all]
pytest
coverage
pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

azure-functions>=1.12.0
py-staticmaps==0.4.0
fastapi==0.110.2
fastapi==0.111.0
Pillow==9.5.0
nest-asyncio==1.6.0
opentelemetry-instrumentation-fastapi==0.45b0
Expand Down

0 comments on commit 8fcc358

Please sign in to comment.