Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reference PyPI instead of direct install now that it's published #20

Merged
merged 2 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down