Skip to content

Commit

Permalink
Update pip usage in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Moussa committed Aug 24, 2022
1 parent 51bd4e1 commit 37baa3c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install lcov with Ubuntu package manager
run: sudo apt-get install lcov

- name: Install dependencies with PyPI
run: python -m pip install numpy
run: pip install numpy

- name: Configure MOPAC with CMake
run: |
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
path: glibc

- name: Install dependencies with PyPI
run: python -m pip install numpy
run: pip install numpy

- name: Configure MOPAC with CMake
run: |
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
sudo /Volumes/m_fortran-compiler*/bootstrapper.app/Contents/MacOS/install.sh --silent --eula accept
- name: Install dependencies with PyPI
run: python -m pip install numpy
run: pip3 install numpy

# AUTO_BLAS=OFF because find_package(BLAS) has a bug with static BLAS libraries on Mac
- name: Configure MOPAC with CMake
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
mkl_unpack\bootstrapper --silent --eula accept -p=NEED_VS2019_INTEGRATION=0
- name: Install dependencies with PyPI
run: python -m pip install numpy
run: pip3 install numpy

# The main Intel\oneAPI\setvars.bat script is not setting up the correct version of ifort, so using component-level scripts
- name: Configure MOPAC with CMake
Expand Down

0 comments on commit 37baa3c

Please sign in to comment.