Cleanup galaxy-objectstore for recent changes.

This commit is contained in:
John Chilton
2024-05-14 08:46:00 -04:00
parent 50bcb183eb
commit 55bd5c74cf
5 changed files with 5 additions and 2 deletions
@@ -10,6 +10,7 @@ babel==2.14.0 ; python_version >= "3.8" and python_version < "3.13"
backports-tarfile==1.1.1 ; python_version >= "3.8" and python_version < "3.12"
backports-zoneinfo==0.2.1 ; python_version >= "3.8" and python_version < "3.9"
black==24.4.2 ; python_version >= "3.8" and python_version < "3.13"
boto3==1.34.69 ; python_version >= "3.8" and python_version < "3.13"
build==1.2.1 ; python_version >= "3.8" and python_version < "3.13"
cachecontrol[filecache]==0.14.0 ; python_version >= "3.8" and python_version < "3.13"
certifi==2024.2.2 ; python_version >= "3.8" and python_version < "3.13"
+1 -1
View File
@@ -17,7 +17,7 @@ try:
generate_blob_sas,
)
except ImportError:
BlobServiceClient = None
BlobServiceClient = None # type: ignore[assignment,unused-ignore,misc]
from ._caching_base import CachingConcreteObjectStore
from .caching import (
@@ -1 +1,3 @@
pytest
boto3
azure-storage-blob
+1
View File
@@ -130,6 +130,7 @@ s3fs = "^2023.1.0"
ase = ">=3.18.1"
axe-selenium-python = "*"
black = "*"
boto3 = "*"
codespell = "*"
cwltest = "*"
darker = "*"
@@ -1,5 +1,4 @@
import os
import random
import shutil
import time
from functools import wraps