Update max bun version (#1038)

This commit is contained in:
Nikhil Rao 2023-05-16 17:07:18 -07:00 committed by GitHub
parent 0bfd988869
commit 6209916795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ MIN_NODE_VERSION = "16.6.0"
# Valid bun versions.
MIN_BUN_VERSION = "0.5.9"
MAX_BUN_VERSION = "0.5.9"
MAX_BUN_VERSION = "0.6.1"
# Files and directories used to init a new project.
# The root directory of the pynecone library.

View File

@ -14,7 +14,7 @@ from pynecone.vars import Var
V055 = version.parse("0.5.5")
V059 = version.parse("0.5.9")
V056 = version.parse("0.5.6")
V0510 = version.parse("0.5.10")
V062 = version.parse("0.6.2")
@pytest.mark.parametrize(
@ -246,7 +246,7 @@ def test_format_route(route: str, expected: bool):
[
(V055, False, "yes"),
(V059, True, None),
(V0510, False, "yes"),
(V062, False, "yes"),
],
)
def test_bun_validate_and_install(mocker, bun_version, is_valid, prompt_input):