From f2a38ec936251add83cdc59fc7e6ac21ca4b6ce9 Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Tue, 23 Jul 2024 15:34:53 +0530 Subject: [PATCH 1/3] Update setuptools version to 69.0.2 in pyproject.toml --- openmetadata-airflow-apis/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmetadata-airflow-apis/pyproject.toml b/openmetadata-airflow-apis/pyproject.toml index 0f7b573e330a..be0773de1caa 100644 --- a/openmetadata-airflow-apis/pyproject.toml +++ b/openmetadata-airflow-apis/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools"] +requires = ["setuptools==69.0.2"] build-backend = "setuptools.build_meta" # We will keep handling dependencies in setup.py From ce5b342bb033b2479b284cf26c36908925d90c84 Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Tue, 23 Jul 2024 15:51:16 +0530 Subject: [PATCH 2/3] Modify Setuptools Version in Makefile --- ingestion/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/Makefile b/ingestion/Makefile index 719784b95341..b8f270644c3c 100644 --- a/ingestion/Makefile +++ b/ingestion/Makefile @@ -27,7 +27,7 @@ install_all: ## Install the ingestion module with all dependencies .PHONY: install_apis install_apis: ## Install the REST APIs module to the current environment - python -m pip install $(ROOT_DIR)/openmetadata-airflow-apis/ + python -m pip install $(ROOT_DIR)/openmetadata-airflow-apis/ setuptools==69.0.2 .PHONY: lint lint: ## Run pylint on the Python sources to analyze the codebase From 99f6038c0989625187e4d305e813ed9922d04220 Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Tue, 23 Jul 2024 15:57:15 +0530 Subject: [PATCH 3/3] Update setuptools version to 69.0.2 --- openmetadata-airflow-apis/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/openmetadata-airflow-apis/pyproject.toml b/openmetadata-airflow-apis/pyproject.toml index be0773de1caa..11511c4c82f0 100644 --- a/openmetadata-airflow-apis/pyproject.toml +++ b/openmetadata-airflow-apis/pyproject.toml @@ -19,6 +19,7 @@ dependencies = [ "apache-airflow>=2.2.2", "Flask>=1.1.4", "Flask-Admin==1.6.0", + "setuptools==69.0.2", ] [project.optional-dependencies]