From 91b2ab2f2fb9b749cb5268c8a7e6013d9e7ce544 Mon Sep 17 00:00:00 2001 From: Pablo Ruiz Date: Sat, 29 Nov 2025 14:10:01 +0700 Subject: [PATCH] Update pyproject.toml Currently black and ruff are mandatory dependencies that makes the project imposible to install if you are using more moderen versions of ruff --- clients/spot/pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/clients/spot/pyproject.toml b/clients/spot/pyproject.toml index 1671e35a..69900f01 100644 --- a/clients/spot/pyproject.toml +++ b/clients/spot/pyproject.toml @@ -16,20 +16,20 @@ requests = ">=2.31.0" pydantic = ">=2.10.0" websockets = "^15.0.1" websocket-client = ">=1.6.3" -black = "^25.1.0" -ruff = "^0.12.0" + pycryptodome = "^3.17" aiohttp = "^3.9" binance-common = "3.2.0" -pytest = { version = ">=6.2.5", optional = true } [tool.poetry.extras] dev = ["pytest"] [tool.poetry.group.dev.dependencies] tox = "^4.27.0" -pytest = ">=8.4.1" pytest-asyncio = "^1.0.0" +black = "^25.1.0" +ruff = "^0.12.0" +pytest = ">=8.4.1" [tool.ruff] exclude = [".git", ".tox", "build", "dist"] @@ -37,4 +37,4 @@ lint.ignore = ["E741"] [build-system] requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" \ No newline at end of file +build-backend = "poetry.core.masonry.api"