Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernize giftless #125

Merged
merged 20 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
latest flask 2.x
  • Loading branch information
athornton committed Dec 20, 2023
commit 3a4d5e7b23441dbddd71cab98bccf87870a43c75
4 changes: 2 additions & 2 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
figcan==0.0.*
flask~=2.1
flask-marshmallow==0.11.*
flask~=2.3
flask-marshmallow~=0.15
marshmallow-enum~=1.5
pyyaml~=6.0
PyJWT~=2.4
Expand Down
11 changes: 6 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ azure-storage-blob==12.19.0
# via -r requirements.in
blinker==1.7.0
# via flask
boto3==1.34.4
boto3==1.34.5
# via -r requirements.in
botocore==1.34.4
botocore==1.34.5
# via
# boto3
# s3transfer
Expand Down Expand Up @@ -43,7 +43,7 @@ flask==2.3.3
# flask-marshmallow
flask-classful==0.16.0
# via -r requirements.in
flask-marshmallow==0.11.0
flask-marshmallow==0.15.0
# via -r requirements.in
google-api-core==2.15.0
# via
Expand Down Expand Up @@ -92,7 +92,9 @@ marshmallow==3.20.1
marshmallow-enum==1.5.1
# via -r requirements.in
packaging==23.2
# via marshmallow
# via
# flask-marshmallow
# marshmallow
protobuf==4.25.1
# via
# google-api-core
Expand Down Expand Up @@ -128,7 +130,6 @@ s3transfer==0.9.0
six==1.16.0
# via
# azure-core
# flask-marshmallow
# google-cloud-storage
# isodate
# python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion tests/storage/test_azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def storage_backend() -> Generator[AzureBlobsStorage, None, None]:
finally:
container = client.get_container_client(container_name)
try:
for blob in container.list_blobs(name_starts_with=prefix):
for blob in container.list_blob_names(name_starts_with=prefix):
container.delete_blob(blob)
except AzureError:
pass
Expand Down