Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build_logic_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_logic_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_rewards_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

- name: Install python dependencies
run: poetry install

- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
name: "Linters and formatters check"
with:
extra_args: --all-files --show-diff-on-failure
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/core_logic_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

- name: Install python dependencies
run: poetry install

- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
name: "Linters and formatters check"
with:
extra_args: --all-files --show-diff-on-failure
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/core_logic_testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

- name: Install python dependencies
run: poetry install

- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
name: "Linters and formatters check"
with:
extra_args: --all-files --show-diff-on-failure
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/depost_swap_fees_to_pool_mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.14'

- name: Set up Poetry
uses: abatilo/actions-poetry@v2.3.0
uses: abatilo/actions-poetry@v2.4.0
with:
poetry-version: 1.4.2

- name: Install python dependencies
run: poetry install

- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
name: "Linters and formatters check"
with:
extra_args: --all-files --show-diff-on-failure
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: trailing-whitespace

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.12.1
hooks:
- id: black

- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black"]

- repo: https://github.com/myint/autoflake
rev: v2.1.1
rev: v2.3.1
hooks:
- id: autoflake
args:
Expand All @@ -28,14 +28,14 @@ repos:
- --ignore-init-module-imports

- repo: https://github.com/myint/eradicate
rev: 2.2.0
rev: 2.3.0
hooks:
- id: eradicate
args:
- --in-place

- repo: https://github.com/PyCQA/bandit
rev: '1.7.5'
rev: '1.8.6'
hooks:
- id: bandit
args: ["-x", "tests/*"]
Expand Down
Loading