Skip to content

Commit

Permalink
change to python3
Browse files Browse the repository at this point in the history
Signed-off-by: Aryan Rajoria <aryanrajoria1003@gmail.com>
  • Loading branch information
aryan-rajoria committed Nov 6, 2024
1 parent 2cdd0b3 commit 8c8dd71
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-meson-tst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
path: blint-db
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install setuptools wheel twine build
cd blint-db && python -m pip install .
cd blint-db && python3 -m pip install .
- name: Clean up previous
run: |
cd blint-db
Expand All @@ -33,8 +33,8 @@ jobs:
run: |
mkdir -p temp
cd blint-db/
python blint_db/cli.py -f -Z1
python ./.oras/orasclient.py
python3 blint_db/cli.py -f -Z1
python3 ./.oras/orasclient.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}
8 changes: 4 additions & 4 deletions .github/workflows/build-meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
path: blint-db
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install setuptools wheel twine build
cd blint-db && python -m pip install .
cd blint-db && python3 -m pip install .
- name: Clean up previous
run: |
cd blint-db
Expand All @@ -33,8 +33,8 @@ jobs:
run: |
mkdir -p temp
cd blint-db/
python blint_db/cli.py -Z1
python ./.oras/orasclient.py
python3 blint_db/cli.py -Z1
python3 ./.oras/orasclient.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}
8 changes: 4 additions & 4 deletions .github/workflows/build-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
path: blint-db
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install setuptools wheel twine build
cd blint-db && python -m pip install .
cd blint-db && python3 -m pip install .
- name: Clean up previous
run: |
cd blint-db
Expand All @@ -33,8 +33,8 @@ jobs:
run: |
mkdir -p temp
cd blint-db/
python blint-db/blint_db/cli.py -Z2
python ./.oras/orasclient.py
python3 blint-db/blint_db/cli.py -Z2
python3 ./.oras/orasclient.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}

0 comments on commit 8c8dd71

Please sign in to comment.