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

Add --force-reinstall to install-server-package target #24

Merged
merged 1 commit into from
Aug 21, 2024
Merged
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ uninstall-server-package:
@$(PYTHON_PIP) uninstall elyra -y

install-server-package: uninstall-server-package
$(PYTHON_PIP) install --upgrade --upgrade-strategy $(UPGRADE_STRATEGY) "$(shell find dist -name "odh_elyra-*-py3-none-any.whl")"
$(PYTHON_PIP) install --upgrade --force-reinstall --upgrade-strategy $(UPGRADE_STRATEGY) "$(shell find dist -name "odh_elyra-*-py3-none-any.whl")"

install-server: build-dependencies lint-server build-server install-server-package ## Build and install backend

Expand All @@ -189,7 +189,7 @@ install-all: package-ui install-server install-examples install-gitlab-dependenc

install-dev: package-ui-dev install-server install-examples install-gitlab-dependency check-install

install-examples: ## Install example pipeline components
install-examples: ## Install example pipeline components
# install Kubeflow Pipelines example components
# -> https://github.com/elyra-ai/examples/tree/main/component-catalog-connectors/kfp-example-components-connector
- $(PYTHON_PIP) install --upgrade elyra-examples-kfp-catalog
Expand Down
Loading