From 84fe17096b0b2352cb72c1bd311b4a233e4816ff Mon Sep 17 00:00:00 2001 From: Adam Chidlow Date: Tue, 23 Apr 2024 17:56:36 +0800 Subject: [PATCH] remove puyapy compiler dependency restriction --- .../production_python_smart_contract_python/pyproject.toml | 2 +- .../production_python_smart_contract_typescript/pyproject.toml | 2 +- .../starter_python_smart_contract_python/pyproject.toml | 2 +- .../starter_python_smart_contract_typescript/pyproject.toml | 2 +- examples/production_python/pyproject.toml | 2 +- examples/starter_python/pyproject.toml | 2 +- template_content/pyproject.toml.jinja | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/generators/production_python_smart_contract_python/pyproject.toml b/examples/generators/production_python_smart_contract_python/pyproject.toml index 17de885..68eb615 100644 --- a/examples/generators/production_python_smart_contract_python/pyproject.toml +++ b/examples/generators/production_python_smart_contract_python/pyproject.toml @@ -20,7 +20,7 @@ pytest = "*" pytest-cov = "*" pip-audit = "*" pre-commit = "*" -puyapy = "^1.0.0" +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 230a8b0..8373d84 100644 --- a/examples/generators/production_python_smart_contract_typescript/pyproject.toml +++ b/examples/generators/production_python_smart_contract_typescript/pyproject.toml @@ -18,7 +18,7 @@ ruff = "^0.1.6" mypy = "*" pip-audit = "*" pre-commit = "*" -puyapy = "^1.0.0" +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 8b70133..b49fc6b 100644 --- a/examples/generators/starter_python_smart_contract_python/pyproject.toml +++ b/examples/generators/starter_python_smart_contract_python/pyproject.toml @@ -13,7 +13,7 @@ algorand-python = "^1.0.0" [tool.poetry.group.dev.dependencies] algokit-client-generator = "^1.1.3" -puyapy = "^1.0.0" +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 2b08931..beafe9e 100644 --- a/examples/generators/starter_python_smart_contract_typescript/pyproject.toml +++ b/examples/generators/starter_python_smart_contract_typescript/pyproject.toml @@ -13,7 +13,7 @@ algorand-python = "^1.0.0" [tool.poetry.group.dev.dependencies] algokit-client-generator = "^1.1.3" -puyapy = "^1.0.0" +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/production_python/pyproject.toml b/examples/production_python/pyproject.toml index c247993..c8246c7 100644 --- a/examples/production_python/pyproject.toml +++ b/examples/production_python/pyproject.toml @@ -20,7 +20,7 @@ pytest = "*" pytest-cov = "*" pip-audit = "*" pre-commit = "*" -puyapy = "^1.0.0" +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/examples/starter_python/pyproject.toml b/examples/starter_python/pyproject.toml index a440a70..9fb8217 100644 --- a/examples/starter_python/pyproject.toml +++ b/examples/starter_python/pyproject.toml @@ -13,7 +13,7 @@ algorand-python = "^1.0.0" [tool.poetry.group.dev.dependencies] algokit-client-generator = "^1.1.3" -puyapy = "^1.0.0" +puyapy = "*" [build-system] requires = ["poetry-core"] diff --git a/template_content/pyproject.toml.jinja b/template_content/pyproject.toml.jinja index 53aa07a..c9be7ee 100644 --- a/template_content/pyproject.toml.jinja +++ b/template_content/pyproject.toml.jinja @@ -34,7 +34,7 @@ pip-audit = "*" {% if use_pre_commit -%} pre-commit = "*" {% endif -%} -puyapy = "^1.0.0" +puyapy = "*" [build-system] requires = ["poetry-core"]