From 198aae0b29a1b9688f39852c065371be9f3f131d Mon Sep 17 00:00:00 2001 From: Pankaj Date: Fri, 12 Apr 2024 19:18:59 +0530 Subject: [PATCH] Fix --- python-sdk/noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-sdk/noxfile.py b/python-sdk/noxfile.py index c725582b8..8feabea9a 100644 --- a/python-sdk/noxfile.py +++ b/python-sdk/noxfile.py @@ -28,7 +28,7 @@ def test(session: nox.Session, airflow) -> None: "AIRFLOW__CORE__ALLOWED_DESERIALIZATION_CLASSES": "airflow.* astro.*", } - session.install(f"apache-airflow~={airflow}") + session.install(f"apache-airflow=={airflow}") session.install("-e", ".[all,tests]") # Log all the installed dependencies