From 2ea6e6fd49b1afc144bcf4dc38b22e7054a4ed1f Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Tue, 23 Jul 2024 16:00:57 +0530 Subject: [PATCH] chore: Update setuptools version in Makefile and pyproject.toml --- ingestion/Makefile | 2 +- openmetadata-airflow-apis/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ingestion/Makefile b/ingestion/Makefile index d83745ae1c5e..d9fb87c64a9c 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 diff --git a/openmetadata-airflow-apis/pyproject.toml b/openmetadata-airflow-apis/pyproject.toml index 2e055b74daa3..b9089855f8d5 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