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

chore: testing prerelease #20

Merged
merged 3 commits into from
Feb 26, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/check-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: pipx install poetry

- name: Install algokit
run: pipx install git+https://github.com/algorandfoundation/algokit-cli@feat/init_wizard_v2 --force
run: pipx install algokit

- name: Set up Python 3.12
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion examples/production_beaker_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/production_puya_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/production_tealscript_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_beaker_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_puya_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_tealscript_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion template_content/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion template_content/check_algokit_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
logger = logging.getLogger(__name__)

# algokit cli version that in which support for wizard v2 was first introduced
ALGOKIT_MIN_VERSION = "1.11.4"
ALGOKIT_MIN_VERSION = "1.12.0"


def get_algokit_version():
Expand Down