fix(deps): replace unavailable numba==0.59.0rc1 with stable release (#57)

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.
This commit is contained in:
Muhammad Hashim Ali
2025-11-05 12:01:32 +05:00
committed by GitHub
parent 6490dcb5d4
commit 7b284a6346

View File

@@ -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"]