Skip to content

Commit cd46d83

Browse files
committed
fix: update python deps
1 parent 20eba3c commit cd46d83

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

examples/generators/production_python_smart_contract_python/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
@@ -21,7 +21,7 @@ pytest = "*"
2121
pytest-cov = "*"
2222
pip-audit = "*"
2323
pre-commit = "*"
24-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
24+
puyapy = "*"
2525

2626
[build-system]
2727
requires = ["poetry-core"]

examples/generators/production_python_smart_contract_typescript/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
@@ -18,7 +18,7 @@ ruff = "^0.1.6"
1818
mypy = "1.11.0"
1919
pip-audit = "*"
2020
pre-commit = "*"
21-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
21+
puyapy = "*"
2222

2323
[build-system]
2424
requires = ["poetry-core"]

examples/generators/starter_python_smart_contract_python/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"
17-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
17+
puyapy = "*"
1818

1919
[build-system]
2020
requires = ["poetry-core"]

examples/generators/starter_python_smart_contract_typescript/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
1414

1515
[tool.poetry.group.dev.dependencies]
16-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
16+
puyapy = "*"
1717

1818
[build-system]
1919
requires = ["poetry-core"]

examples/production_python/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
@@ -21,7 +21,7 @@ pytest = "*"
2121
pytest-cov = "*"
2222
pip-audit = "*"
2323
pre-commit = "*"
24-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
24+
puyapy = "*"
2525

2626
[build-system]
2727
requires = ["poetry-core"]

examples/starter_python/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"
17-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
17+
puyapy = "*"
1818

1919
[build-system]
2020
requires = ["poetry-core"]

template_content/pyproject.toml.jinja

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77

88
[tool.poetry.dependencies]
99
python = "^3.12"
10-
algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" }
10+
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
1313
algorand-python-testing = "^0.4.0"
@@ -37,7 +37,7 @@ pip-audit = "*"
3737
{% if use_pre_commit -%}
3838
pre-commit = "*"
3939
{% endif -%}
40-
puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" }
40+
puyapy = "*"
4141

4242
[build-system]
4343
requires = ["poetry-core"]

0 commit comments

Comments
 (0)