Skip to content
New issue

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

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

Already on GitHub? # to your account

Require Node.js version 18 (or later) in preparation for version 16 EOL #3118

Merged
merged 1 commit into from
Mar 7, 2023
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Refer to the [installation documentation](https://elyra.readthedocs.io/en/stable
For detailed information refer to the [installation documentation](https://elyra.readthedocs.io/en/stable/getting_started/installation.html).

### Prerequisites :
* [Node.js 16+](https://nodejs.org/en/)
* [Node.js 18+](https://nodejs.org/en/)
* [Python 3.8+](https://www.python.org/downloads/)
* [Miniconda](https://docs.conda.io/en/latest/miniconda.html) (optional)

Expand Down
2 changes: 1 addition & 1 deletion create-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def validate_dependencies() -> None:
if not dependency_exists("git"):
raise DependencyException("Please install git https://git-scm.com/downloads")
if not dependency_exists("node"):
raise DependencyException("Please install node.js v16+ https://nodejs.org/")
raise DependencyException("Please install node.js 18+ https://nodejs.org/")
if not dependency_exists("yarn"):
raise DependencyException("Please install yarn https://classic.yarnpkg.com/")
if not dependency_exists("twine"):
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developer_guide/development-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This section describes the steps necessary to build Elyra in a development envir
#### Requirements

* [Python 3 Miniconda](https://docs.conda.io/en/latest/miniconda.html)
* [Node.js 16+](https://nodejs.org/en/)
* [Node.js 18+](https://nodejs.org/en/)
* [Yarn](https://yarnpkg.com/lang/en/docs/install)
* [GNU Make](https://www.gnu.org/software/make/)

Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The Elyra [JupyterLab extensions](https://jupyterlab.readthedocs.io/en/stable/us

### Prerequisites

* [Node.js 16+](https://nodejs.org/en/)
* [Node.js 18+](https://nodejs.org/en/)
* [Python 3.8+](https://www.python.org/downloads/) (or later)

JupyterLab dependencies:
Expand Down