Skip to content

Commit 0232bb6

Browse files
authored
chore: bumping to stable release of algorand-python-testing (#54)
* chore: bumping to stable release of `algorand-python-testing` * chore: refining log for during python contracts deployment * chore: regen artifacts
1 parent 23a285c commit 0232bb6

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

examples/generators/production_python_smart_contract_python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
13-
algorand-python-testing = "^0.3.0b1"
13+
algorand-python-testing = "^0.3.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/generators/production_python_smart_contract_python/smart_contracts/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def main(action: str) -> None:
5252
for contract in contracts:
5353
logger.info(f"Building app at {contract.path}")
5454
app_spec_path = build(artifact_path / contract.name, contract.path)
55-
logger.info(f"Deploying {contract.path.name}")
5655
if contract.deploy:
56+
logger.info(f"Deploying {contract.path.name}")
5757
deploy(app_spec_path, contract.deploy)
5858

5959

examples/generators/production_python_smart_contract_typescript/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
13-
algorand-python-testing = "^0.3.0b1"
13+
algorand-python-testing = "^0.3.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
black = {extras = ["d"], version = "*"}

examples/generators/starter_python_smart_contract_python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
13-
algorand-python-testing = "^0.3.0b1"
13+
algorand-python-testing = "^0.3.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/generators/starter_python_smart_contract_python/smart_contracts/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def main(action: str) -> None:
5252
for contract in contracts:
5353
logger.info(f"Building app at {contract.path}")
5454
app_spec_path = build(artifact_path / contract.name, contract.path)
55-
logger.info(f"Deploying {contract.path.name}")
5655
if contract.deploy:
56+
logger.info(f"Deploying {contract.path.name}")
5757
deploy(app_spec_path, contract.deploy)
5858

5959

examples/generators/starter_python_smart_contract_typescript/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
13-
algorand-python-testing = "^0.3.0b1"
13+
algorand-python-testing = "^0.3.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
puyapy = "*"

examples/production_python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
13-
algorand-python-testing = "^0.3.0b1"
13+
algorand-python-testing = "^0.3.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/production_python/smart_contracts/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def main(action: str) -> None:
5252
for contract in contracts:
5353
logger.info(f"Building app at {contract.path}")
5454
app_spec_path = build(artifact_path / contract.name, contract.path)
55-
logger.info(f"Deploying {contract.path.name}")
5655
if contract.deploy:
56+
logger.info(f"Deploying {contract.path.name}")
5757
deploy(app_spec_path, contract.deploy)
5858

5959

examples/starter_python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ python = "^3.12"
1010
algokit-utils = "^2.3.0"
1111
python-dotenv = "^1.0.0"
1212
algorand-python = "^2.0.0"
13-
algorand-python-testing = "^0.3.0b1"
13+
algorand-python-testing = "^0.3.0"
1414

1515
[tool.poetry.group.dev.dependencies]
1616
algokit-client-generator = "^1.1.3"

examples/starter_python/smart_contracts/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def main(action: str) -> None:
5252
for contract in contracts:
5353
logger.info(f"Building app at {contract.path}")
5454
app_spec_path = build(artifact_path / contract.name, contract.path)
55-
logger.info(f"Deploying {contract.path.name}")
5655
if contract.deploy:
56+
logger.info(f"Deploying {contract.path.name}")
5757
deploy(app_spec_path, contract.deploy)
5858

5959

0 commit comments

Comments
 (0)