From d32996c91f80df11a4ae987a3068dc72a0438558 Mon Sep 17 00:00:00 2001 From: Milo Chen Date: Sun, 7 May 2023 03:11:07 +0800 Subject: [PATCH] Update min node version to 16.6.0 (#957) --- pynecone/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pynecone/constants.py b/pynecone/constants.py index f79c0ceb1..47ca09574 100644 --- a/pynecone/constants.py +++ b/pynecone/constants.py @@ -15,7 +15,7 @@ PACKAGE_NAME = "pynecone" # The current version of Pynecone. VERSION = pkg_resources.get_distribution(PACKAGE_NAME).version # Minimum version of Node.js required to run Pynecone. -MIN_NODE_VERSION = "12.22.0" +MIN_NODE_VERSION = "16.6.0" # Valid bun versions. MIN_BUN_VERSION = "0.5.8"