Skip to content

Commit e33e248

Browse files
authored
Pipeline break fix (#682)
1 parent ae615d2 commit e33e248

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/01-main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
run: yarn build
3737

3838
- name: Setup Python
39-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v3
4040
with:
41-
python-version: "3.9"
41+
python-version: "3.10"
4242
cache: "pipenv"
4343
- name: Install pipenv
4444
run: python -m pip install pipenv

.github/workflows/05-examples.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Python
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.9"
32+
python-version: "3.10"
3333
cache: "pipenv"
3434
- name: Install pipenv
3535
run: python -m pip install pipenv

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ tealer = {editable = true, ref = "dev", git = "https://github.com/crytic/tealer.
1212
[dev-packages]
1313

1414
[requires]
15-
python_version = "3"
15+
python_version = "3.10"

docs/guide/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For more in-depth description you can look at the [project specification](https:
3434
- Node 14+
3535
- Connection to an Algorand node. Follow our [infrastructure guide](https://github.com/scale-it/algo-builder/tree/master/infrastructure/README.md) for instructions how to setup a private network (using Algorand node binaries or docker based setup).
3636
NOTE: TEAL compilation requires Developer API to be enabled (`"EnableDeveloperAPI": true` in the node config.json).
37-
- Python 3.7+ (for PyTeal) with [pyteal](https://pypi.org/project/pyteal). Please read below how to install it. We recommend to use `pipenv` with our `Pipfile` to stay always up to date.
37+
- Python >= 3.10 (for PyTeal) with [pyteal](https://pypi.org/project/pyteal). Please read below how to install it. We recommend to use `pipenv` with our `Pipfile` to stay always up to date.
3838
- Yarn `v3.1+` or NPM `v8.0+` or PNPM `v6.21+` (note: all our examples use yarn v3 workspaces).
3939

4040
### Algorand Node requirements

0 commit comments

Comments
 (0)