algorand-python-testing 1.2.0b12__tar.gz → 1.2.0b13__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (404) hide show
  1. algorand_python_testing-1.2.0b13/.github/actions/build-documentation/action.yml +48 -0
  2. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.github/workflows/cd.yaml +14 -9
  3. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.github/workflows/ci.yaml +25 -6
  4. algorand_python_testing-1.2.0b13/.github/workflows/gh-pages.yaml +28 -0
  5. algorand_python_testing-1.2.0b13/.github/workflows/publish-devportal-docs.yml +40 -0
  6. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.gitignore +3 -0
  7. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/CHANGELOG.md +28 -0
  8. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/PKG-INFO +2 -2
  9. algorand_python_testing-1.2.0b13/docs/.gitignore +5 -0
  10. algorand_python_testing-1.2.0b13/docs/api_build.py +512 -0
  11. algorand_python_testing-1.2.0b13/docs/astro.config.mjs +54 -0
  12. algorand_python_testing-1.2.0b13/docs/legacy-routes.json +28 -0
  13. algorand_python_testing-1.2.0b13/docs/package.json +31 -0
  14. algorand_python_testing-1.2.0b13/docs/pnpm-lock.yaml +5281 -0
  15. algorand_python_testing-1.2.0b13/docs/scripts/generate-examples-mdx.ts +136 -0
  16. algorand_python_testing-1.2.0b13/docs/scripts/generate-legacy-redirects.mjs +82 -0
  17. algorand_python_testing-1.2.0b13/docs/sidebar.config.json +45 -0
  18. algorand_python_testing-1.2.0b13/docs/sphinx/conf.py +103 -0
  19. algorand_python_testing-1.2.0b13/docs/sphinx/index.rst +7 -0
  20. {algorand_python_testing-1.2.0b12/docs → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/algopy.md +4 -1
  21. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/arc4-types.md +12 -26
  22. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/avm-types.md +29 -27
  23. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts}/opcodes.md +44 -34
  24. algorand_python_testing-1.2.0b12/docs/testing-guide/index.md → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts/overview.md +7 -23
  25. algorand_python_testing-1.2.0b12/docs/testing-guide/concepts.md → algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts/test-context.md +13 -30
  26. algorand_python_testing-1.2.0b13/docs/src/content/docs/concepts/value-generators.md +37 -0
  27. algorand_python_testing-1.2.0b13/docs/src/content/docs/conftest.py +10 -0
  28. algorand_python_testing-1.2.0b12/docs/examples.md → algorand_python_testing-1.2.0b13/docs/src/content/docs/examples/index.md +6 -1
  29. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/contract-testing.md +14 -26
  30. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/signature-testing.md +16 -21
  31. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/state-management.md +20 -21
  32. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/subroutines.md +9 -20
  33. {algorand_python_testing-1.2.0b12/docs/testing-guide → algorand_python_testing-1.2.0b13/docs/src/content/docs/guide}/transactions.md +17 -26
  34. algorand_python_testing-1.2.0b13/docs/src/content/docs/index.mdx +80 -0
  35. {algorand_python_testing-1.2.0b12/docs → algorand_python_testing-1.2.0b13/docs/src/content/docs/reference}/coverage.md +5 -2
  36. {algorand_python_testing-1.2.0b12/docs → algorand_python_testing-1.2.0b13/docs/src/content/docs/reference}/faq.md +9 -7
  37. algorand_python_testing-1.2.0b13/docs/src/content/docs/tutorials/quick-start.md +107 -0
  38. algorand_python_testing-1.2.0b13/docs/src/content.config.ts +7 -0
  39. algorand_python_testing-1.2.0b13/docs/src/styles/api-reference.css +75 -0
  40. algorand_python_testing-1.2.0b13/docs/tsconfig.json +8 -0
  41. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/pyproject.toml +27 -15
  42. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/arc4.py +2 -2
  43. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/fixed_bytes.py +0 -1
  44. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/uint64.py +0 -1
  45. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/box.py +12 -9
  46. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/log.py +15 -11
  47. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/arc4.py +2 -3
  48. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/avm.py +2 -2
  49. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/Contract.arc56.json +8 -24
  50. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV0.arc56.json +5 -14
  51. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV1.arc56.json +5 -14
  52. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.arc56.json +31 -97
  53. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.arc56.json +4 -11
  54. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.arc56.json +62 -229
  55. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.arc56.json +28 -110
  56. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/DynamicArrayInitContract.arc56.json +7 -20
  57. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.arc56.json +52 -188
  58. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.arc56.json +22 -88
  59. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.arc56.json +44 -150
  60. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.arc56.json +4 -11
  61. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.arc56.json +14 -42
  62. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.arc56.json +16 -47
  63. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/DynamicItxnGroup.arc56.json +10 -34
  64. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/VerifierContract.arc56.json +5 -14
  65. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.arc56.json +5 -14
  66. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.arc56.json +40 -119
  67. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.arc56.json +72 -215
  68. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.arc56.json +20 -73
  69. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.arc56.json +48 -143
  70. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.arc56.json +4 -11
  71. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.arc56.json +34 -101
  72. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.arc56.json +29 -105
  73. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.arc56.json +10 -29
  74. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.arc56.json +3 -8
  75. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.arc56.json +12 -35
  76. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.arc56.json +4 -11
  77. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.arc56.json +14 -57
  78. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.arc56.json +5 -14
  79. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.arc56.json +17 -66
  80. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.arc56.json +4 -11
  81. algorand_python_testing-1.2.0b12/.github/workflows/gh-pages.yaml +0 -39
  82. algorand_python_testing-1.2.0b12/docs/Makefile +0 -20
  83. algorand_python_testing-1.2.0b12/docs/_static/custom.css +0 -14
  84. algorand_python_testing-1.2.0b12/docs/api.md +0 -41
  85. algorand_python_testing-1.2.0b12/docs/conf.py +0 -96
  86. algorand_python_testing-1.2.0b12/docs/index.md +0 -182
  87. algorand_python_testing-1.2.0b12/docs/make.bat +0 -35
  88. algorand_python_testing-1.2.0b12/tests/value_generators/__init__.py +0 -0
  89. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.coveragerc +0 -0
  90. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.editorconfig +0 -0
  91. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  92. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  93. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.github/dependabot.yml +0 -0
  94. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.github/pull_request_template.md +0 -0
  95. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.pre-commit-config.yaml +0 -0
  96. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.vscode/extensions.json +0 -0
  97. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.vscode/launch.json +0 -0
  98. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/.vscode/settings.json +0 -0
  99. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/CONTRIBUTING.md +0 -0
  100. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/LICENSE +0 -0
  101. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/README.md +0 -0
  102. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/README.md +0 -0
  103. {algorand_python_testing-1.2.0b12/docs → algorand_python_testing-1.2.0b13/examples}/__init__.py +0 -0
  104. {algorand_python_testing-1.2.0b12/examples → algorand_python_testing-1.2.0b13/examples/auction}/__init__.py +0 -0
  105. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/auction/contract.py +0 -0
  106. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/auction/test_contract.py +0 -0
  107. {algorand_python_testing-1.2.0b12/examples/auction → algorand_python_testing-1.2.0b13/examples/htlc_logicsig}/__init__.py +0 -0
  108. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/htlc_logicsig/signature.py +0 -0
  109. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/htlc_logicsig/test_signature.py +0 -0
  110. {algorand_python_testing-1.2.0b12/examples/htlc_logicsig → algorand_python_testing-1.2.0b13/examples/marketplace}/__init__.py +0 -0
  111. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/marketplace/contract.py +0 -0
  112. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/marketplace/test_contract.py +0 -0
  113. {algorand_python_testing-1.2.0b12/examples/marketplace → algorand_python_testing-1.2.0b13/examples/proof_of_attendance}/__init__.py +0 -0
  114. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/proof_of_attendance/contract.py +0 -0
  115. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/proof_of_attendance/test_contract.py +0 -0
  116. {algorand_python_testing-1.2.0b12/examples/proof_of_attendance → algorand_python_testing-1.2.0b13/examples/scratch_storage}/__init__.py +0 -0
  117. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/scratch_storage/contract.py +0 -0
  118. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/scratch_storage/test_contract.py +0 -0
  119. {algorand_python_testing-1.2.0b12/examples/scratch_storage → algorand_python_testing-1.2.0b13/examples/simple_voting}/__init__.py +0 -0
  120. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/simple_voting/contract.py +0 -0
  121. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/simple_voting/test_contract.py +0 -0
  122. {algorand_python_testing-1.2.0b12/examples/simple_voting → algorand_python_testing-1.2.0b13/examples/zk_whitelist}/__init__.py +0 -0
  123. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/zk_whitelist/contract.py +0 -0
  124. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/examples/zk_whitelist/test_contract.py +0 -0
  125. {algorand_python_testing-1.2.0b12/examples/zk_whitelist → algorand_python_testing-1.2.0b13/scripts}/__init__.py +0 -0
  126. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/scripts/check_stubs_cov.py +0 -0
  127. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/scripts/refresh_test_artifacts.py +0 -0
  128. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/scripts/validate_examples.py +0 -0
  129. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/__init__.py +0 -0
  130. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/compiled.py +0 -0
  131. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/constants.py +0 -0
  132. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context.py +0 -0
  133. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/__init__.py +0 -0
  134. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/context_storage.py +0 -0
  135. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/ledger_context.py +0 -0
  136. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/context_helpers/txn_context.py +0 -0
  137. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/decorators/__init__.py +0 -0
  138. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/decorators/arc4.py +0 -0
  139. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/decorators/subroutine.py +0 -0
  140. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/enums.py +0 -0
  141. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/gtxn.py +0 -0
  142. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/itxn.py +0 -0
  143. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/itxn_loader.py +0 -0
  144. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/__init__.py +0 -0
  145. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/account.py +0 -0
  146. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/application.py +0 -0
  147. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/asset.py +0 -0
  148. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/contract.py +0 -0
  149. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/logicsig.py +0 -0
  150. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/template_variable.py +0 -0
  151. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/txn_fields.py +0 -0
  152. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/models/unsigned_builtins.py +0 -0
  153. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/mutable.py +0 -0
  154. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/__init__.py +0 -0
  155. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/block.py +0 -0
  156. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/constants.py +0 -0
  157. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/crypto.py +0 -0
  158. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/global_values.py +0 -0
  159. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/itxn.py +0 -0
  160. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/misc.py +0 -0
  161. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/pure.py +0 -0
  162. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/op/txn.py +0 -0
  163. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/__init__.py +0 -0
  164. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/array.py +0 -0
  165. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/biguint.py +0 -0
  166. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/bytes.py +0 -0
  167. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/primitives/string.py +0 -0
  168. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/protocols.py +0 -0
  169. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/py.typed +0 -0
  170. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/serialize.py +0 -0
  171. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/__init__.py +0 -0
  172. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/global_map.py +0 -0
  173. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/global_state.py +0 -0
  174. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/local_map.py +0 -0
  175. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/local_state.py +0 -0
  176. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/state/utils.py +0 -0
  177. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/__init__.py +0 -0
  178. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/budget.py +0 -0
  179. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utilities/size_of.py +0 -0
  180. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/utils.py +0 -0
  181. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/__init__.py +0 -0
  182. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/_algopy_testing/value_generators/txn.py +0 -0
  183. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy/__init__.py +0 -0
  184. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy/arc4.py +0 -0
  185. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy/gtxn.py +0 -0
  186. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy/itxn.py +0 -0
  187. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy/op.py +0 -0
  188. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy/py.typed +0 -0
  189. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy_testing/__init__.py +0 -0
  190. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/src/algopy_testing/py.typed +0 -0
  191. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/templates/.macros.j2 +0 -0
  192. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/templates/.release_notes.md.j2 +0 -0
  193. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/templates/CHANGELOG.md.j2 +0 -0
  194. {algorand_python_testing-1.2.0b12/scripts → algorand_python_testing-1.2.0b13/tests}/__init__.py +0 -0
  195. {algorand_python_testing-1.2.0b12/tests → algorand_python_testing-1.2.0b13/tests/arc4}/__init__.py +0 -0
  196. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/conftest.py +0 -0
  197. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_abi_call.py +0 -0
  198. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_address.py +0 -0
  199. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_arc4_method_signature.py +0 -0
  200. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_bool.py +0 -0
  201. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_dynamic_array.py +0 -0
  202. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_dynamic_bytes.py +0 -0
  203. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_emit.py +0 -0
  204. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_encode_decode.py +0 -0
  205. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_static_array.py +0 -0
  206. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_string.py +0 -0
  207. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_struct.py +0 -0
  208. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_tuple.py +0 -0
  209. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_ufixednxm.py +0 -0
  210. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/arc4/test_uintn.py +0 -0
  211. {algorand_python_testing-1.2.0b12/tests/arc4 → algorand_python_testing-1.2.0b13/tests/artifacts/AVM12}/__init__.py +0 -0
  212. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/contract.py +0 -0
  213. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/Contract.approval.teal +0 -0
  214. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/Contract.clear.teal +0 -0
  215. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV0.approval.teal +0 -0
  216. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV0.clear.teal +0 -0
  217. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV1.approval.teal +0 -0
  218. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/AVM12/data/ContractV1.clear.teal +0 -0
  219. {algorand_python_testing-1.2.0b12/tests/artifacts/AVM12 → algorand_python_testing-1.2.0b13/tests/artifacts/Arc4ABIMethod}/__init__.py +0 -0
  220. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/contract.py +0 -0
  221. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.approval.teal +0 -0
  222. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.arc32.json +0 -0
  223. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4ABIMethod/data/SignaturesContract.clear.teal +0 -0
  224. {algorand_python_testing-1.2.0b12/tests/artifacts/Arc4ABIMethod → algorand_python_testing-1.2.0b13/tests/artifacts/Arc4InnerTxns}/__init__.py +0 -0
  225. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/contract.py +0 -0
  226. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.approval.teal +0 -0
  227. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.arc32.json +0 -0
  228. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4InnerTxns/data/Arc4InnerTxnsContract.clear.teal +0 -0
  229. {algorand_python_testing-1.2.0b12/tests/artifacts/Arc4InnerTxns → algorand_python_testing-1.2.0b13/tests/artifacts/Arc4PrimitiveOps}/__init__.py +0 -0
  230. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/contract.py +0 -0
  231. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.approval.teal +0 -0
  232. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.arc32.json +0 -0
  233. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arc4PrimitiveOps/data/Arc4PrimitiveOpsContract.clear.teal +0 -0
  234. {algorand_python_testing-1.2.0b12/tests/artifacts/Arc4PrimitiveOps → algorand_python_testing-1.2.0b13/tests/artifacts/Arrays}/__init__.py +0 -0
  235. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.approval.teal +0 -0
  236. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.arc32.json +0 -0
  237. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/Contract.clear.teal +0 -0
  238. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/DynamicArrayInitContract.approval.teal +0 -0
  239. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/DynamicArrayInitContract.clear.teal +0 -0
  240. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.approval.teal +0 -0
  241. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.arc32.json +0 -0
  242. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayContract.clear.teal +0 -0
  243. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayInitContract.approval.teal +0 -0
  244. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayInitContract.arc56.json +0 -0
  245. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/ImmutableArrayInitContract.clear.teal +0 -0
  246. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.approval.teal +0 -0
  247. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.arc32.json +0 -0
  248. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/data/StaticSizeContract.clear.teal +0 -0
  249. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/immutable.py +0 -0
  250. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/static_size.py +0 -0
  251. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Arrays/uint64.py +0 -0
  252. {algorand_python_testing-1.2.0b12/tests/artifacts/Arrays → algorand_python_testing-1.2.0b13/tests/artifacts/BoxContract}/__init__.py +0 -0
  253. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/contract.py +0 -0
  254. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.approval.teal +0 -0
  255. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.arc32.json +0 -0
  256. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/BoxContract/data/BoxContract.clear.teal +0 -0
  257. {algorand_python_testing-1.2.0b12/tests/artifacts/BoxContract → algorand_python_testing-1.2.0b13/tests/artifacts/Contains}/__init__.py +0 -0
  258. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Contains/contract.py +0 -0
  259. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Contains/data/MyContract.approval.teal +0 -0
  260. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Contains/data/MyContract.clear.teal +0 -0
  261. {algorand_python_testing-1.2.0b12/tests/artifacts/Contains → algorand_python_testing-1.2.0b13/tests/artifacts/CreatedAppAsset}/__init__.py +0 -0
  262. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/contract.py +0 -0
  263. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.approval.teal +0 -0
  264. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.arc32.json +0 -0
  265. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppCall.clear.teal +0 -0
  266. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.approval.teal +0 -0
  267. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.arc32.json +0 -0
  268. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/data/AppExpectingEffects.clear.teal +0 -0
  269. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CreatedAppAsset/other.py +0 -0
  270. {algorand_python_testing-1.2.0b12/tests/artifacts/CreatedAppAsset → algorand_python_testing-1.2.0b13/tests/artifacts/CryptoOps}/__init__.py +0 -0
  271. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/contract.py +0 -0
  272. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.approval.teal +0 -0
  273. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.arc32.json +0 -0
  274. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/CryptoOps/data/CryptoOpsContract.clear.teal +0 -0
  275. {algorand_python_testing-1.2.0b12/tests/artifacts/CryptoOps → algorand_python_testing-1.2.0b13/tests/artifacts/DynamicITxnGroup}/__init__.py +0 -0
  276. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/contract.py +0 -0
  277. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/DynamicItxnGroup.approval.teal +0 -0
  278. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/DynamicItxnGroup.clear.teal +0 -0
  279. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/VerifierContract.approval.teal +0 -0
  280. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/data/VerifierContract.clear.teal +0 -0
  281. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/DynamicITxnGroup/verifier.py +0 -0
  282. {algorand_python_testing-1.2.0b12/tests/artifacts/DynamicITxnGroup → algorand_python_testing-1.2.0b13/tests/artifacts/GlobalStateValidator}/__init__.py +0 -0
  283. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/contract.py +0 -0
  284. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.approval.teal +0 -0
  285. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.arc32.json +0 -0
  286. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/GlobalStateValidator/data/GlobalStateValidator.clear.teal +0 -0
  287. {algorand_python_testing-1.2.0b12/tests/artifacts/GlobalStateValidator → algorand_python_testing-1.2.0b13/tests/artifacts/LogicSignature}/__init__.py +0 -0
  288. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/data/args_complex.teal +0 -0
  289. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/data/args_complex_no_validation.teal +0 -0
  290. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/data/args_simple.teal +0 -0
  291. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/lsig_args_complex.py +0 -0
  292. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/LogicSignature/lsig_args_simple.py +0 -0
  293. {algorand_python_testing-1.2.0b12/tests/artifacts/LogicSignature → algorand_python_testing-1.2.0b13/tests/artifacts/MiscellaneousOps}/__init__.py +0 -0
  294. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/contract.py +0 -0
  295. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.approval.teal +0 -0
  296. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.arc32.json +0 -0
  297. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/MiscellaneousOps/data/MiscellaneousOpsContract.clear.teal +0 -0
  298. {algorand_python_testing-1.2.0b12/tests/artifacts/MiscellaneousOps → algorand_python_testing-1.2.0b13/tests/artifacts/PrimitiveOps}/__init__.py +0 -0
  299. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/contract.py +0 -0
  300. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.approval.teal +0 -0
  301. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.arc32.json +0 -0
  302. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/PrimitiveOps/data/PrimitiveOpsContract.clear.teal +0 -0
  303. {algorand_python_testing-1.2.0b12/tests/artifacts/PrimitiveOps → algorand_python_testing-1.2.0b13/tests/artifacts/StateMutations}/__init__.py +0 -0
  304. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/Contract.approval.teal +0 -0
  305. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/Contract.arc32.json +0 -0
  306. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/Contract.clear.teal +0 -0
  307. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.approval.teal +0 -0
  308. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.arc32.json +0 -0
  309. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/data/StateMutations.clear.teal +0 -0
  310. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateMutations/statemutations.py +0 -0
  311. {algorand_python_testing-1.2.0b12/tests/artifacts/StateMutations → algorand_python_testing-1.2.0b13/tests/artifacts/StateOps}/__init__.py +0 -0
  312. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/contract.py +0 -0
  313. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalMapContract.approval.teal +0 -0
  314. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalMapContract.arc56.json +0 -0
  315. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalMapContract.clear.teal +0 -0
  316. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.approval.teal +0 -0
  317. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.arc32.json +0 -0
  318. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/GlobalStateContract.clear.teal +0 -0
  319. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.approval.teal +0 -0
  320. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.arc32.json +0 -0
  321. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/ITxnOpsContract.clear.teal +0 -0
  322. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalMapContract.approval.teal +0 -0
  323. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalMapContract.arc56.json +0 -0
  324. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalMapContract.clear.teal +0 -0
  325. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.approval.teal +0 -0
  326. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.arc32.json +0 -0
  327. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/LocalStateContract.clear.teal +0 -0
  328. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGet.approval.teal +0 -0
  329. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGet.arc32.json +0 -0
  330. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGet.clear.teal +0 -0
  331. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.approval.teal +0 -0
  332. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.arc32.json +0 -0
  333. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAcctParamsGetContract.clear.teal +0 -0
  334. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.approval.teal +0 -0
  335. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.arc32.json +0 -0
  336. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalContract.clear.teal +0 -0
  337. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.approval.teal +0 -0
  338. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.arc32.json +0 -0
  339. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppGlobalExContract.clear.teal +0 -0
  340. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.approval.teal +0 -0
  341. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.arc32.json +0 -0
  342. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalContract.clear.teal +0 -0
  343. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.approval.teal +0 -0
  344. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.arc32.json +0 -0
  345. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppLocalExContract.clear.teal +0 -0
  346. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.approval.teal +0 -0
  347. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.arc32.json +0 -0
  348. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAppParamsContract.clear.teal +0 -0
  349. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.approval.teal +0 -0
  350. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.arc32.json +0 -0
  351. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetHoldingContract.clear.teal +0 -0
  352. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.approval.teal +0 -0
  353. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.arc32.json +0 -0
  354. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/StateOps/data/StateAssetParamsContract.clear.teal +0 -0
  355. {algorand_python_testing-1.2.0b12/tests/artifacts/StateOps → algorand_python_testing-1.2.0b13/tests/artifacts/Tuples}/__init__.py +0 -0
  356. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/contract.py +0 -0
  357. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.approval.teal +0 -0
  358. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.arc32.json +0 -0
  359. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/artifacts/Tuples/data/TuplesContract.clear.teal +0 -0
  360. {algorand_python_testing-1.2.0b12/tests/artifacts/Tuples → algorand_python_testing-1.2.0b13/tests/artifacts}/__init__.py +0 -0
  361. {algorand_python_testing-1.2.0b12/tests/artifacts → algorand_python_testing-1.2.0b13/tests/avm12}/__init__.py +0 -0
  362. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/avm12/conftest.py +0 -0
  363. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/avm12/test_avm12.py +0 -0
  364. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/common.py +0 -0
  365. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/conftest.py +0 -0
  366. {algorand_python_testing-1.2.0b12/tests/avm12 → algorand_python_testing-1.2.0b13/tests/contexts}/__init__.py +0 -0
  367. {algorand_python_testing-1.2.0b12/tests/contexts → algorand_python_testing-1.2.0b13/tests/dynamic_itxn_group}/__init__.py +0 -0
  368. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/dynamic_itxn_group/test_dynamic_itxn_group.py +0 -0
  369. {algorand_python_testing-1.2.0b12/tests/dynamic_itxn_group → algorand_python_testing-1.2.0b13/tests/logic_signature}/__init__.py +0 -0
  370. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/logic_signature/test_lsig_args_complex.py +0 -0
  371. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/logic_signature/test_lsig_args_simple.py +0 -0
  372. {algorand_python_testing-1.2.0b12/tests/logic_signature → algorand_python_testing-1.2.0b13/tests/models}/__init__.py +0 -0
  373. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_asset.py +0 -0
  374. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_box.py +0 -0
  375. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_box_map.py +0 -0
  376. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_box_ref.py +0 -0
  377. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_contract.py +0 -0
  378. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_uenumerate.py +0 -0
  379. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/models/test_urange.py +0 -0
  380. {algorand_python_testing-1.2.0b12/tests/models → algorand_python_testing-1.2.0b13/tests/primitives}/__init__.py +0 -0
  381. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/primitives/conftest.py +0 -0
  382. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/primitives/test_biguint.py +0 -0
  383. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/primitives/test_bytes.py +0 -0
  384. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/primitives/test_fixed_bytes.py +0 -0
  385. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/primitives/test_string.py +0 -0
  386. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/primitives/test_uint64.py +0 -0
  387. {algorand_python_testing-1.2.0b12/tests/primitives → algorand_python_testing-1.2.0b13/tests/state}/__init__.py +0 -0
  388. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/state/conftest.py +0 -0
  389. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/state/test_global_map.py +0 -0
  390. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/state/test_global_state.py +0 -0
  391. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/state/test_local_map.py +0 -0
  392. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/state/test_local_state.py +0 -0
  393. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/state/test_mutations.py +0 -0
  394. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/test_array.py +0 -0
  395. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/test_context.py +0 -0
  396. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/test_miscellaneous_op.py +0 -0
  397. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/test_op.py +0 -0
  398. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/util.py +0 -0
  399. {algorand_python_testing-1.2.0b12/tests/state → algorand_python_testing-1.2.0b13/tests/utilities}/__init__.py +0 -0
  400. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/utilities/conftest.py +0 -0
  401. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/utilities/test_log.py +0 -0
  402. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/utilities/test_size_of.py +0 -0
  403. {algorand_python_testing-1.2.0b12/tests/utilities → algorand_python_testing-1.2.0b13/tests/value_generators}/__init__.py +0 -0
  404. {algorand_python_testing-1.2.0b12 → algorand_python_testing-1.2.0b13}/tests/value_generators/test_avm.py +0 -0
@@ -0,0 +1,48 @@
1
+ name: "Build Documentation"
2
+ description: "Build Astro Starlight documentation using hatch"
3
+ inputs:
4
+ node-version:
5
+ description: "Node.js version"
6
+ required: false
7
+ default: "22.x"
8
+ upload-pages-artifact:
9
+ description: "Upload docs/dist as a GitHub Pages artifact"
10
+ required: false
11
+ default: "true"
12
+
13
+ runs:
14
+ using: "composite"
15
+ steps:
16
+ - name: Set up Python 3.12
17
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
18
+ with:
19
+ python-version: "3.12"
20
+ cache: "pip"
21
+
22
+ - name: Install hatch
23
+ shell: bash
24
+ run: pip install hatch
25
+
26
+ - name: Setup Node.js
27
+ uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
28
+ with:
29
+ node-version: ${{ inputs.node-version }}
30
+
31
+ - name: Setup pnpm
32
+ uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
33
+ with:
34
+ package_json_file: docs/package.json
35
+
36
+ - name: Install docs dependencies
37
+ shell: bash
38
+ run: pnpm install --frozen-lockfile --dir docs
39
+
40
+ - name: Build docs
41
+ shell: bash
42
+ run: hatch run docs:build
43
+
44
+ - name: Upload Pages artifact
45
+ if: inputs.upload-pages-artifact == 'true'
46
+ uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5
47
+ with:
48
+ path: docs/dist
@@ -26,8 +26,7 @@ on:
26
26
  concurrency: release
27
27
 
28
28
  permissions:
29
- contents: write
30
- packages: read
29
+ contents: read
31
30
 
32
31
  jobs:
33
32
  release:
@@ -42,10 +41,16 @@ jobs:
42
41
  DRY_RUN: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'true' && '--noop' || '' }}
43
42
  PRERELEASE: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.prerelease || 'true' }}
44
43
  steps:
45
- - uses: actions/checkout@v4
44
+ - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3
45
+ id: app-token
46
+ with:
47
+ app-id: ${{ secrets.BOT_ID }}
48
+ private-key: ${{ secrets.BOT_SK }}
49
+
50
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
46
51
  with:
47
52
  fetch-depth: 0
48
- token: ${{ secrets.GITHUB_TOKEN }}
53
+ token: ${{ steps.app-token.outputs.token }}
49
54
 
50
55
  - name: Verify production puyapy and algorand-python dependencies
51
56
  if: ${{ env.PRERELEASE == 'false' }}
@@ -75,7 +80,7 @@ jobs:
75
80
  run: pipx install hatch
76
81
 
77
82
  - name: Set up Python 3.12
78
- uses: actions/setup-python@v5
83
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
79
84
  with:
80
85
  python-version: "3.12"
81
86
  cache: "pip"
@@ -101,18 +106,18 @@ jobs:
101
106
  - name: Python Semantic Release
102
107
  id: semantic-release
103
108
  if: ${{ github.ref == 'refs/heads/main' }}
104
- uses: python-semantic-release/python-semantic-release@master
109
+ uses: python-semantic-release/python-semantic-release@350c48fcb3ffcdfd2e0a235206bc2ecea6b69df0 # v10.5.3
105
110
  with:
106
- github_token: ${{ secrets.GITHUB_TOKEN }}
111
+ github_token: ${{ steps.app-token.outputs.token }}
107
112
  prerelease: ${{ env.PRERELEASE == 'true' }}
108
113
  root_options: $DRY_RUN
109
114
 
110
115
  - name: Publish to PyPI
111
116
  if: ${{ !inputs.dry_run && steps.semantic-release.outputs.released == 'true' }}
112
- uses: pypa/gh-action-pypi-publish@release/v1
117
+ uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
113
118
  with:
114
119
  packages-dir: dist
115
120
 
116
- - uses: actions/upload-artifact@v4 # upload artifacts so they are retained on the job
121
+ - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
117
122
  with:
118
123
  path: dist
@@ -6,15 +6,18 @@ on:
6
6
  schedule:
7
7
  - cron: "0 8 * * 1" # Each monday 8 AM UTC
8
8
 
9
+ permissions:
10
+ contents: read
11
+
9
12
  jobs:
10
13
  check-python:
11
14
  runs-on: "ubuntu-latest"
12
15
  steps:
13
16
  - name: Checkout source code
14
- uses: actions/checkout@v4
17
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
15
18
 
16
19
  - name: Set up Python 3.12
17
- uses: actions/setup-python@v5
20
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
18
21
  with:
19
22
  python-version: "3.12"
20
23
  cache: "pip"
@@ -22,6 +25,19 @@ jobs:
22
25
  - name: Install hatch
23
26
  run: pip install hatch
24
27
 
28
+ - name: Setup Node.js
29
+ uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
30
+ with:
31
+ node-version: "22.x"
32
+
33
+ - name: Setup pnpm
34
+ uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
35
+ with:
36
+ package_json_file: docs/package.json
37
+
38
+ - name: Install docs dependencies
39
+ run: pnpm install --frozen-lockfile --dir docs
40
+
25
41
  - name: Start LocalNet
26
42
  run: pipx install algokit && algokit localnet start
27
43
 
@@ -37,8 +53,11 @@ jobs:
37
53
  - name: Check wheels can be built
38
54
  run: hatch build
39
55
 
56
+ - name: Build docs
57
+ run: hatch run docs:build
58
+
40
59
  - name: Check doctests
41
- run: hatch run docs:test
60
+ run: hatch run test:docs
42
61
 
43
62
  test-python-matrix:
44
63
  runs-on: "ubuntu-latest"
@@ -47,10 +66,10 @@ jobs:
47
66
  python-version: ["3.12", "3.13"]
48
67
  steps:
49
68
  - name: Checkout source code
50
- uses: actions/checkout@v4
69
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
51
70
 
52
71
  - name: Set up Python ${{ matrix.python-version }}
53
- uses: actions/setup-python@v5
72
+ uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
54
73
  with:
55
74
  python-version: ${{ matrix.python-version }}
56
75
  cache: "pip"
@@ -68,7 +87,7 @@ jobs:
68
87
  run: hatch run examples.py${{ matrix.python-version }}:tests
69
88
 
70
89
  - name: Upload coverage artifacts
71
- uses: actions/upload-artifact@v4
90
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
72
91
  if: ${{ matrix.python-version == '3.13' }}
73
92
  with:
74
93
  name: coverage-reports
@@ -0,0 +1,28 @@
1
+ name: Publish docs to GitHub Pages
2
+
3
+ on:
4
+ workflow_call:
5
+ workflow_dispatch:
6
+
7
+ permissions:
8
+ contents: read
9
+
10
+ jobs:
11
+ build-and-publish-docs:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: read
15
+ pages: write
16
+ id-token: write
17
+ steps:
18
+ - name: Checkout source code
19
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
20
+
21
+ - name: Build and upload docs artifact
22
+ uses: ./.github/actions/build-documentation
23
+ with:
24
+ node-version: 22.x
25
+ upload-pages-artifact: 'true'
26
+
27
+ - name: Deploy to GitHub Pages
28
+ uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5
@@ -0,0 +1,40 @@
1
+ name: Publish DevPortal Docs
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [main]
7
+ tags: ['v*']
8
+
9
+ permissions:
10
+ contents: write
11
+
12
+ jobs:
13
+ publish-docs:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
17
+
18
+ - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
19
+ with:
20
+ node-version: 24.x
21
+
22
+ - uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
23
+ with:
24
+ package_json_file: docs/package.json
25
+
26
+ - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
27
+ with:
28
+ python-version: '3.12'
29
+ cache: pip
30
+
31
+ - name: Install hatch
32
+ run: pip install hatch
33
+
34
+ - name: Generate API docs
35
+ run: hatch run docs:api
36
+
37
+ - name: Publish DevPortal Docs
38
+ uses: algorandfoundation/devportal/.github/actions/publish-devportal-docs@release/ak-v4
39
+ with:
40
+ docs-dir: docs
@@ -18,3 +18,6 @@ coverage.xml
18
18
 
19
19
  .cursorignore
20
20
  *.puya.map
21
+
22
+ # AI Agents
23
+ .codex
@@ -1,4 +1,32 @@
1
1
  # CHANGELOG
2
+ ## v1.2.0-beta.13 (2026-05-28)
3
+
4
+ ### Features
5
+
6
+ * bootstrap starlight docs workspace and shared styling ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
7
+
8
+ * replace sphinx build flow with api bridge and legacy redirects ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
9
+
10
+ ### Documentation
11
+
12
+ * starlight docs ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
13
+
14
+ * migrate top-level documentation pages to starlight ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
15
+
16
+ * migrate testing guide pages and assets to starlight ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
17
+
18
+ * restructure starlight docs with new concepts, quick-start and api build improvements ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
19
+
20
+ * replace process.stdout with console.log in generate-examples-mdx script ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
21
+
22
+ * replace process.stdout with console.log in generate-legacy-redirects.mjs script ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
23
+
24
+ * restore mermaid diagrams and render them using astro-mermaid ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
25
+
26
+ * restore doctest with pytest-markdown-docs and wirte into ci ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
27
+
28
+ * add parentheses to @pytest.fixture decorator in conftest ([`f3a03d8`](https://github.com/algorandfoundation/algorand-python-testing/commit/f3a03d8f93c62cd9544e9044e5786e9bce2449c1))
29
+
2
30
  ## v1.2.0-beta.12 (2026-05-13)
3
31
 
4
32
  ### Features
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: algorand-python-testing
3
- Version: 1.2.0b12
3
+ Version: 1.2.0b13
4
4
  Summary: Algorand Python testing library
5
5
  Project-URL: Documentation, https://github.com/algorandfoundation/puya/tree/main/algopy_testing#README.md
6
6
  Project-URL: Issues, https://github.com/algorandfoundation/puya/issues
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Topic :: Software Development :: Testing
17
17
  Requires-Python: >=3.12
18
- Requires-Dist: algokit-utils>=5.0.0b1
18
+ Requires-Dist: algokit-utils>=5.0.0b3
19
19
  Requires-Dist: algorand-python>=3
20
20
  Requires-Dist: coincurve>=19.0.1
21
21
  Requires-Dist: ecdsa>=0.17.0
@@ -0,0 +1,5 @@
1
+ .astro/
2
+ dist/
3
+ node_modules/
4
+ src/content/docs/api/
5
+ src/content/docs/examples/