Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setuptools version to 69.0.2 in pyproject.toml #17141

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ingestion/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion openmetadata-airflow-apis/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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]
Expand Down
Loading