Skip to content

Commit

Permalink
Update elyra version for v4.0.x branch (#47)
Browse files Browse the repository at this point in the history
* Update elyra version for v4.0.x branch

Co-authored-by: Harshad Reddy Nalla <harshadreddy16@gmail.com>
  • Loading branch information
paulovmr and harshad16 authored Sep 26, 2024
1 parent d19d62a commit 50b4bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elyra/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "4.0.0.dev1"
__version__ = "4.0.0.rc0"
2 changes: 1 addition & 1 deletion elyra/pipeline/kfp/processor_kfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ def _compose_container_command_args(
# meant for the opendatahub-io/Data-science-pipelines v2 use case
# and should not be opened as PR against upstream Elyra
elyra_github_org = os.getenv("ELYRA_GITHUB_ORG", "opendatahub-io")
elyra_github_branch = os.getenv("ELYRA_GITHUB_BRANCH", "jupyterlab4" if "dev" in __version__ else __version__)
elyra_github_branch = os.getenv("ELYRA_GITHUB_BRANCH", "v4.0.x" if "dev" in __version__ else f"v{__version__}")
elyra_bootstrap_script_url = os.getenv(
"ELYRA_BOOTSTRAP_SCRIPT_URL",
f"https://raw.githubusercontent.com/{elyra_github_org}/elyra/{elyra_github_branch}/elyra/kfp/bootstrapper.py", # noqa E501
Expand Down

0 comments on commit 50b4bcd

Please sign in to comment.