Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ jobs:
- name: Check linting with Ruff
run: |
# stop the build if there are Python syntax errors or undefined names
poetry run ruff .
poetry run ruff check .

- name: Configure git
shell: bash
run: |
# set git user and email as test invoke git
git config --global user.email "actions@github.com" && git config --global user.name "github-actions"

- name: Setup Node.js 20.x
- name: Setup Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"

- name: Run tests
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions examples/production/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ This project has been generated using AlgoKit. See below for default getting sta

### Pre-requisites

- [Nodejs 20](https://nodejs.org/en/download) or later
- [Nodejs 22](https://nodejs.org/en/download) or later
- [AlgoKit CLI 2.5](https://github.com/algorandfoundation/algokit-cli?tab=readme-ov-file#install) or later
- [Docker](https://www.docker.com/) (only required for LocalNet)
- [Puya Compiler 4.4.2](https://pypi.org/project/puyapy/) or later
- [Puya Compiler 4.4.4](https://pypi.org/project/puyapy/) or later

> For interactive tour over the codebase, download [vsls-contrib.codetour](https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour) extension for VS Code, then open the [`.codetour.json`](./.tours/getting-started-with-your-algokit-project.tour) file in code tour extension.

Expand All @@ -25,7 +25,7 @@ Ensure the following pre-requisites are installed and properly configured:

- **Docker**: Required for running a local Algorand network.
- **AlgoKit CLI**: Essential for project setup and operations. Verify installation with `algokit --version`, expecting `2.5.0` or later.
- **Puya Compiler**: Can be installed from PyPi by running `pipx install puyapy`. Verify installation with `puyapy --version`, expecting `4.4.2` or later.
- **Puya Compiler**: Can be installed from PyPi by running `pipx install puyapy`. Verify installation with `puyapy --version`, expecting `4.4.4` or later.

#### 3. Bootstrap Your Local Environment

Expand Down
8 changes: 4 additions & 4 deletions examples/production/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"check-types": "tsc --noEmit"
},
"engines": {
"node": ">=20.0",
"node": ">=22.0",
"npm": ">=9.0"
},
"dependencies": {
Expand All @@ -26,9 +26,9 @@
"@algorandfoundation/algokit-client-generator": "^4.0.8",
"@algorandfoundation/algokit-utils": "^8.2.1",
"@algorandfoundation/algokit-utils-debug": "^1.0.3",
"@algorandfoundation/puya-ts": "^1.0.0-beta.30",
"@algorandfoundation/puya-ts": "^1.0.0-beta.34",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/node22": "^22.0.0",
"algosdk": "^3.0.0",
"better-npm-audit": "^3.11.0",
"dotenv": "^16.4.7",
Expand All @@ -37,7 +37,7 @@
"typescript-eslint": "^8.19.1",
"prettier": "^3.4.2",
"ts-node-dev": "^2.0.0",
"@algorandfoundation/algorand-typescript-testing": "^1.0.0-beta.25",
"@algorandfoundation/algorand-typescript-testing": "^1.0.0-beta.27",
"vitest": "^2.1.8",
"@vitest/coverage-v8": "^2.1.8",
"typescript": "^5.7.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/production/tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node20/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"noEmit": true,
"target": "ES2023",
Expand Down
6 changes: 3 additions & 3 deletions examples/starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ This project has been generated using AlgoKit. See below for default getting sta

### Pre-requisites

- [Nodejs 20](https://nodejs.org/en/download) or later
- [Nodejs 22](https://nodejs.org/en/download) or later
- [AlgoKit CLI 2.5](https://github.com/algorandfoundation/algokit-cli?tab=readme-ov-file#install) or later
- [Docker](https://www.docker.com/) (only required for LocalNet)
- [Puya Compiler 4.4.2](https://pypi.org/project/puyapy/) or later
- [Puya Compiler 4.4.4](https://pypi.org/project/puyapy/) or later

> For interactive tour over the codebase, download [vsls-contrib.codetour](https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour) extension for VS Code, then open the [`.codetour.json`](./.tours/getting-started-with-your-algokit-project.tour) file in code tour extension.

Expand All @@ -23,7 +23,7 @@ Ensure the following pre-requisites are installed and properly configured:

- **Docker**: Required for running a local Algorand network.
- **AlgoKit CLI**: Essential for project setup and operations. Verify installation with `algokit --version`, expecting `2.5.0` or later.
- **Puya Compiler**: Can be installed from PyPi by running `pipx install puyapy`. Verify installation with `puyapy --version`, expecting `4.4.2` or later.
- **Puya Compiler**: Can be installed from PyPi by running `pipx install puyapy`. Verify installation with `puyapy --version`, expecting `4.4.4` or later.

#### 3. Bootstrap Your Local Environment
Run the following commands within the project folder:
Expand Down
6 changes: 3 additions & 3 deletions examples/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"check-types": "tsc --noEmit"
},
"engines": {
"node": ">=20.0",
"node": ">=22.0",
"npm": ">=9.0"
},
"dependencies": {
Expand All @@ -20,9 +20,9 @@
"@algorandfoundation/algokit-client-generator": "^4.0.8",
"@algorandfoundation/algokit-utils": "^8.2.1",
"@algorandfoundation/algokit-utils-debug": "^1.0.3",
"@algorandfoundation/puya-ts": "^1.0.0-beta.30",
"@algorandfoundation/puya-ts": "^1.0.0-beta.34",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/node22": "^22.0.0",
"algosdk": "^3.0.0",
"dotenv": "^16.4.7",
"ts-node-dev": "^2.0.0",
Expand Down
Loading
Loading