From f08d4bcc85ebc5f101ed13bb832843c03dac3b25 Mon Sep 17 00:00:00 2001 From: Muhammad Hashim Ali Date: Fri, 29 Aug 2025 23:53:19 +0500 Subject: [PATCH] fix(deps): replace unavailable numba==0.59.0rc1 with stable release The original environment.yml specified numba==0.59.0rc1, which is no longer published on PyPI. This caused installation to fail with: ERROR: No matching distribution found for numba==0.59.0rc1 Updated dependency to numba==0.58.1 with llvmlite==0.40.1 to ensure compatibility and successful installation. This resolves the dependency conflict and allows environment creation to complete without errors. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6c53b68..c0cb90f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ poethepoet = "^0.24.4" uvicorn = "^0.26.0" fastapi = "^0.109.0" python-multipart = "^0.0.6" -numba = "0.59.0rc1" +numba = "0.58.1" [tool.poetry.extras] api = ["uvicorn", "fastapi"]