Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/end2end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pip install poetry
run: pip install -c pip-constraints.txt poetry
- name: Build
run: make build
- name: Upload artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pip install poetry
run: pip install -c pip-constraints.txt poetry
- name: Set the version for this release
run: |
TAG_NAME=${GITHUB_REF##*/}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup safe-chain
run: curl -fsSL https://github.com/AikidoSec/safe-chain/releases/latest/download/install-safe-chain.sh | sh -s -- --ci
- name: Install poetry
run: pip install poetry
run: pip install -c firewall-python/pip-constraints.txt poetry

- name: Build firewall-python dev package
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pip install poetry
run: pip install -c pip-constraints.txt poetry
- name: Set the version for this release
run: |
TAG_NAME=${GITHUB_REF##*/}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ lint:
poetry run black aikido_zen/
poetry run pylint aikido_zen/
install: check_binaries
pip install poetry
pip install -c pip-constraints.txt poetry
poetry install
.PHONY: dev_install
dev_install: install
Expand Down
6 changes: 6 additions & 0 deletions pip-constraints.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
charset-normalizer==3.3.2
more-itertools==10.8.0
certifi==2024.8.30
urllib3==2.2.3
idna==3.8
requests==2.32.3
Loading