Set the min node version 16.8.0 (#1041)

This commit is contained in:
Milo Chen 2023-05-18 01:07:08 +08:00 committed by GitHub
parent 4a580b54ff
commit aa68446ea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
Pynecone requires the following to get started:
- Python 3.7+
- [Node.js 16.6.0+](https://nodejs.org/en/) (Don't worry, you wont have to write any JavaScript!)
- [Node.js 16.8.0+](https://nodejs.org/en/) (Don't worry, you wont have to write any JavaScript!)
```
pip install pynecone

View File

@ -13,7 +13,7 @@ MODULE_NAME = "pynecone"
# The current version of Pynecone.
VERSION = pkg_resources.get_distribution(MODULE_NAME).version
# Minimum version of Node.js required to run Pynecone.
MIN_NODE_VERSION = "16.6.0"
MIN_NODE_VERSION = "16.8.0"
# Valid bun versions.
MIN_BUN_VERSION = "0.5.9"