feat: use uv instead of poetry for CI, docker and development (#3325)

Co-authored-by: arcbtc <ben@arc.wales>
This commit is contained in:
dni ⚡
2025-08-21 16:17:19 +02:00
committed by GitHub
co-authored by arcbtc
parent 15984fa49b
commit 5ba06d42d0
88 changed files with 4265 additions and 1303 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
import asyncio
import statistics
from typing import Optional
import httpx
import jsonpath_ng.ext as jpx
@@ -250,7 +249,7 @@ async def btc_rates(currency: str) -> list[tuple[str, float]]:
async def fetch_price(
provider: ExchangeRateProvider,
) -> Optional[tuple[str, float]]:
) -> tuple[str, float] | None:
if currency.lower() in provider.exclude_to:
logger.warning(f"Provider {provider.name} does not support {currency}.")
return None