From fd8061747286a2cd2c3896247e2f3169e7316de3 Mon Sep 17 00:00:00 2001 From: Robert Neumann Date: Mon, 24 Apr 2023 22:43:54 +0200 Subject: [PATCH] Update bun version to fix Container Build Error (#860) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Rename dalle to DALL·E and add link to bun * Fix DALL-E to DALL·E in Readme * Update bun version to 0.5.9 --- pynecone/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pynecone/constants.py b/pynecone/constants.py index 9aba8b769..3161b847d 100644 --- a/pynecone/constants.py +++ b/pynecone/constants.py @@ -19,7 +19,7 @@ MIN_NODE_VERSION = "12.22.0" # Valid bun versions. MIN_BUN_VERSION = "0.5.5" -MAX_BUN_VERSION = "0.5.8" +MAX_BUN_VERSION = "0.5.9" INVALID_BUN_VERSIONS = ["0.5.6", "0.5.7"] # Files and directories used to init a new project. @@ -73,7 +73,7 @@ API_URL = "http://localhost:8000" # The default path where bun is installed. BUN_PATH = "$HOME/.bun/bin/bun" # Command to install bun. -INSTALL_BUN = "curl -fsSL https://bun.sh/install | bash -s -- bun-v0.5.5" +INSTALL_BUN = "curl -fsSL https://bun.sh/install | bash -s -- bun-v0.5.9" # Default host in dev mode. BACKEND_HOST = "0.0.0.0" # The default timeout when launching the gunicorn server.