Skip to content

Commit

Permalink
add-path
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Feb 3, 2024
1 parent e3a3a22 commit e798d17
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/build-macos-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,11 @@ jobs:
with:
name: wheel-macos-${{ matrix.python-version }}

# This is needed by mumpy and python 3.10
- run: pip install numpy

- run: pip install *.whl

- run: pip install -r tests/requirements.txt

- run: pip freeze
- run: which python3
- run: python3 --version
- run: pip3 install *.whl
- run: pip3 install -r tests/requirements.txt
- run: pip3 freeze

- name: Get some data
run: |
Expand Down Expand Up @@ -131,12 +128,12 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:

- run: ./scripts/select-python.sh ${{ matrix.python-version }}
- run: pip install twine
- run: pip3 install twine

- uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions scripts/select-python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ echo /opt/homebrew/opt/python@$version/libexec/bin >> $GITHUB_PATH

echo $GITHUB_PATH
cat $GITHUB_PATH
ls -l $GITHUB_PATH
pwd

0 comments on commit e798d17

Please sign in to comment.