Skip to content

Commit

Permalink
[CI] Workaround for setuptools and ruamel.yaml.clib incompatibility
Browse files Browse the repository at this point in the history
Fixes #924
  • Loading branch information
speth committed Sep 1, 2020
1 parent 100711f commit 95387d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Install Brew dependencies
run: brew install boost libomp
- name: Upgrade pip
run: python3 -m pip install -U pip setuptools wheel
run: python3 -m pip install -U pip 'setuptools>=47.0.0,<48' wheel
- name: Install Python dependencies
run: python3 -m pip install ruamel.yaml scons numpy cython h5py pandas
- name: Build Cantera
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
architecture: 'x64'
- name: Install Python dependencies
run: |
python -m pip install -U pip setuptools
python -m pip install -U pip 'setuptools>=47.0.0,<48'
python -m pip install scons pypiwin32 numpy ruamel.yaml cython h5py pandas
- name: Build Cantera
run: |
Expand Down

0 comments on commit 95387d3

Please sign in to comment.