Skip to content

Commit

Permalink
Add wheel module installation; update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
christiam committed Jul 24, 2024
1 parent f03e4a0 commit b3ef5fc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-multi-pex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
python-version: ["3.9"]

steps:
- name: Checkout
Expand All @@ -21,6 +21,7 @@ jobs:
- name: Build PEX file
run: |
pip3 install -r requirements/test.txt
pip3 install wheel
pex --python-shebang='/usr/bin/env python3' --disable-cache . -r requirements/base.txt --python=python${{ matrix.python-version }} -c elastic-blast -o elastic-blast
./elastic-blast --version
ls -l elastic-blast
Expand All @@ -38,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:

Expand All @@ -53,6 +54,7 @@ jobs:
- name: Build PEX file
run: |
pip3 install -r requirements/test.txt
pip3 install wheel
pex --python-shebang='/usr/bin/env python3' --disable-cache . -r requirements/base.txt --python=python${{ matrix.python-version }} -c elastic-blast -o elastic-blast${{ matrix.python-version }}
./elastic-blast${{ matrix.python-version }} --version
ls -l ./elastic-blast${{ matrix.python-version }}
Expand Down

0 comments on commit b3ef5fc

Please sign in to comment.