Skip to content

Commit

Permalink
chore: bumping prerelease version of algorand-python-testing to use l…
Browse files Browse the repository at this point in the history
…atest (#39)

* chore: bumping prerelease version of algorand-python-testing to use latest

* chore: regen artifacts
  • Loading branch information
aorumbayev authored Aug 14, 2024
1 parent 163a811 commit 766dabd
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
algokit-client-generator = "^1.1.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:

def test_hello(context: AlgopyTestContext) -> None:
# Arrange
dummy_input = context.any_string()
dummy_input = context.any.string(length=10)
contract = HelloWorld()

# Act
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "*"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
algokit-client-generator = "^1.1.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
puyapy = "*"
Expand Down
2 changes: 1 addition & 1 deletion examples/production_python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
algokit-client-generator = "^1.1.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/production_python/tests/hello_world_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:

def test_hello(context: AlgopyTestContext) -> None:
# Arrange
dummy_input = context.any_string()
dummy_input = context.any.string(length=10)
contract = HelloWorld()

# Act
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
algokit-client-generator = "^1.1.3"
Expand Down
2 changes: 1 addition & 1 deletion template_content/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python = "^3.12"
algokit-utils = "^2.3.0"
python-dotenv = "^1.0.0"
algorand-python = "^1.0.0"
algorand-python-testing = "^0.2.1"
algorand-python-testing = "^0.3.0b1"

[tool.poetry.group.dev.dependencies]
{% if deployment_language == 'python' -%}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def context() -> Generator[AlgopyTestContext, None, None]:

def test_hello(context: AlgopyTestContext) -> None:
# Arrange
dummy_input = context.any_string()
dummy_input = context.any.string(length=10)
contract = {{ contract_name.split('_')|map('capitalize')|join }}()

# Act
Expand Down

0 comments on commit 766dabd

Please sign in to comment.