diff --git a/dvc/config_schema.py b/dvc/config_schema.py index ede8afa2c7..989e8aa9c3 100644 --- a/dvc/config_schema.py +++ b/dvc/config_schema.py @@ -256,6 +256,9 @@ def __call__(self, data): "exclude_shared_token_cache_credential": Bool, "exclude_managed_identity_credential": Bool, Optional("verify", default=False): Bool, + "timeout": int, + "read_timeout": int, + "connection_timeout": int, **REMOTE_COMMON, }, "oss": { diff --git a/pyproject.toml b/pyproject.toml index ee83a68e69..2915a03487 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,7 +70,7 @@ dependencies = [ [project.optional-dependencies] all = ["dvc[azure,gdrive,gs,hdfs,oss,s3,ssh,webdav,webhdfs]"] -azure = ["dvc-azure>=2.21.2"] +azure = ["dvc-azure>=2.23.0"] dev = ["dvc[azure,gdrive,gs,hdfs,lint,oss,s3,ssh,tests,webdav,webhdfs]"] gdrive = ["dvc-gdrive==2.20"] gs = ["dvc-gs==2.22.1"]