diff --git a/examples/generators/production_python_smart_contract_python/pyproject.toml b/examples/generators/production_python_smart_contract_python/pyproject.toml index a340d5f..0add6ad 100644 --- a/examples/generators/production_python_smart_contract_python/pyproject.toml +++ b/examples/generators/production_python_smart_contract_python/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" @@ -21,7 +21,7 @@ pytest = "*" pytest-cov = "*" pip-audit = "*" pre-commit = "*" -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/generators/production_python_smart_contract_typescript/pyproject.toml b/examples/generators/production_python_smart_contract_typescript/pyproject.toml index 174c21f..b935117 100644 --- a/examples/generators/production_python_smart_contract_typescript/pyproject.toml +++ b/examples/generators/production_python_smart_contract_typescript/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" @@ -18,7 +18,7 @@ ruff = "^0.1.6" mypy = "1.11.0" pip-audit = "*" pre-commit = "*" -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/generators/starter_python_smart_contract_python/pyproject.toml b/examples/generators/starter_python_smart_contract_python/pyproject.toml index 22393d1..26ee7c1 100644 --- a/examples/generators/starter_python_smart_contract_python/pyproject.toml +++ b/examples/generators/starter_python_smart_contract_python/pyproject.toml @@ -7,14 +7,14 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" [tool.poetry.group.dev.dependencies] algokit-client-generator = "^1.1.3" -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/generators/starter_python_smart_contract_typescript/pyproject.toml b/examples/generators/starter_python_smart_contract_typescript/pyproject.toml index 3d0984c..39ddab1 100644 --- a/examples/generators/starter_python_smart_contract_typescript/pyproject.toml +++ b/examples/generators/starter_python_smart_contract_typescript/pyproject.toml @@ -7,13 +7,13 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" [tool.poetry.group.dev.dependencies] -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/production_python/pyproject.toml b/examples/production_python/pyproject.toml index bf2bfc2..37051f5 100644 --- a/examples/production_python/pyproject.toml +++ b/examples/production_python/pyproject.toml @@ -7,7 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" @@ -21,7 +21,7 @@ pytest = "*" pytest-cov = "*" pip-audit = "*" pre-commit = "*" -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/starter_python/pyproject.toml b/examples/starter_python/pyproject.toml index 33ccbbb..bca9124 100644 --- a/examples/starter_python/pyproject.toml +++ b/examples/starter_python/pyproject.toml @@ -7,14 +7,14 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" [tool.poetry.group.dev.dependencies] algokit-client-generator = "^1.1.3" -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/template_content/pyproject.toml.jinja b/template_content/pyproject.toml.jinja index 1f1ff84..7f9072a 100644 --- a/template_content/pyproject.toml.jinja +++ b/template_content/pyproject.toml.jinja @@ -7,7 +7,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.12" -algokit-utils = { git = "https://github.com/algorandfoundation/algokit-utils-py.git", branch = "feat/puya-debugging" } +algokit-utils = "^2.3.0" python-dotenv = "^1.0.0" algorand-python = "^2.0.0" algorand-python-testing = "^0.4.0" @@ -37,7 +37,7 @@ pip-audit = "*" {% if use_pre_commit -%} pre-commit = "*" {% endif -%} -puyapy = { git = "https://github.com/algorandfoundation/puya.git", branch = "main" } +puyapy = "*" [build-system] requires = ["poetry-core"]