Update to v0.1.23 (#797)

This commit is contained in:
Nikhil Rao 2023-04-09 22:09:38 -07:00 committed by GitHub
parent 0688b4c01a
commit bdafc21d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -52,8 +52,7 @@ def get_bun_version() -> Optional[str]:
result = subprocess.run(
["bun", "-v"], stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
version = result.stdout.decode().strip()
return version
return result.stdout.decode().strip()
except Exception:
return None

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "pynecone"
version = "0.1.22"
version = "0.1.23"
description = "Web apps in pure Python."
license = "Apache-2.0"
authors = [