From 440b2378d2365927ce3f354cd5a4751247630c1d Mon Sep 17 00:00:00 2001 From: Brian Kroth Date: Fri, 10 Jan 2025 18:48:32 -0600 Subject: [PATCH] Update asyncssh (#925) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request ## Title Update asyncssh --- ## Description - See also #783 --- ## Type of Change _Indicate the type of change by choosing one (or more) of the following:_ - 🛠️ Bug fix --- --------- Co-authored-by: Sergiy Matusevych --- mlos_bench/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlos_bench/setup.py b/mlos_bench/setup.py index 95d902105b..1ff3dbc461 100644 --- a/mlos_bench/setup.py +++ b/mlos_bench/setup.py @@ -67,7 +67,7 @@ def _get_long_desc_from_readme(base_url: str) -> dict: extra_requires: dict[str, list[str]] = { # pylint: disable=consider-using-namedtuple-or-dataclass # Additional tools for extra functionality. "azure": ["azure-storage-file-share", "azure-identity", "azure-keyvault"], - "ssh": ["asyncssh<2.15.0"], # FIXME: asyncssh 2.15.0 has a bug that breaks the tests + "ssh": ["asyncssh>=2.19.0"], "storage-sql-duckdb": ["sqlalchemy", "alembic", "duckdb_engine"], "storage-sql-mysql": ["sqlalchemy", "alembic", "mysql-connector-python"], "storage-sql-postgres": ["sqlalchemy", "alembic", "psycopg2"],