You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* More efficient implementation of recursive subroutines in TEAL 5+ ([#114](https://github.com/algorand/pyteal/pull/114))
11
+
* Add `WideRatio`, an expression which exposes `mulw` and `divmodw` ([#121](https://github.com/algorand/pyteal/pull/121), [#122](https://github.com/algorand/pyteal/pull/122))
12
+
13
+
## Changed
14
+
***WARNING**: Due to code generation improvements, programs compiled with this version will likely
15
+
produce different TEAL code than previous versions, but their functionality will be the same. Be
16
+
aware that even small differences in generated TEAL code will change the address associated with
17
+
escrow LogicSig contracts.
18
+
* Some unnecessary branch conditions have been removed ([#120](https://github.com/algorand/pyteal/pull/120))
Copy file name to clipboardExpand all lines: README.md
+14-9
Original file line number
Diff line number
Diff line change
@@ -18,35 +18,40 @@ PyTeal provides high level, functional programming style abstractions over TEAL
18
18
19
19
### Install
20
20
21
-
PyTeal requires Python version >= 3.6
21
+
PyTeal requires Python version >= 3.6.
22
22
23
-
*`pip3 install pyteal`
23
+
#### Recommended: Install from PyPi
24
24
25
-
### Documentation
25
+
Install the latest official release from PyPi:
26
26
27
-
[PyTeal Docs](https://pyteal.readthedocs.io/)
27
+
*`pip install pyteal`
28
+
29
+
#### Install Latest Commit
30
+
31
+
If needed, it's possible to install directly from the latest commit on master to use unreleased features:
28
32
29
-
### Run Demo
33
+
> **WARNING:** Unreleased code is experimental and may not be backwards compatible or function properly. Use extreme caution when installing PyTeal this way.
0 commit comments