From e451a0064576e17c9cd68ad2b2a267f2ead249f4 Mon Sep 17 00:00:00 2001 From: Adam Chidlow Date: Mon, 11 Dec 2023 18:21:13 +0800 Subject: [PATCH 1/2] reference PyPI instead of direct install now that it's published --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b762794798..ea6cb0d08d 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,12 @@ For example, `foo = spam() or eggs()` will only execute `eggs()` if `bool(spam() The minimum supported Python version for running PuyaPy itself is 3.12. -You can install the developer preview of PuyaPy directly from this repo into your project virtualenv: +You can install the developer preview of PuyaPy from PyPI into your project virtualenv: ```shell -pip install git+https://github.com/algorandfoundation/puya.git +pip install puya ``` -If you're using poetry for dependency and virutalenv management, the above URL should work with -`poetry add`. +If you're using poetry for dependency and virutalenv management, you can add it that way with +`poetry add puya`. Or if you just want to play with some examples, you can clone the repo and have a poke around. From 83e89926f24b3f5e1fbf77d5f9e42a8e3de73aef Mon Sep 17 00:00:00 2001 From: Adam Chidlow Date: Mon, 11 Dec 2023 18:25:56 +0800 Subject: [PATCH 2/2] manually bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eca3742b18..f76104c21b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "puya" -version = "0.1.0" +version = "0.1.1" description = "An optimising Python to TEAL compiler" authors = ["Algorand Foundation "] readme = "README.md"