Skip to content

Commit

Permalink
pip with --no-build-isolation (also in Makefile)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpase committed Aug 16, 2023
1 parent 653cebc commit 1131b03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
choco install make autoconf gcc-core gcc-g++ python3${{ matrix.python-version }}-devel --source cygwin
- name: install dependencies
run: |
C:\\tools\\cygwin\\bin\\bash -l -x -c 'export PATH=/usr/local/bin:/usr/bin && cd $(cygpath -u "$GITHUB_WORKSPACE") && python3.${{ matrix.python-version }} -m pip install -U setuptools cysignals Cython Sphinx flake8'
C:\\tools\\cygwin\\bin\\bash -l -x -c 'export PATH=/usr/local/bin:/usr/bin && cd $(cygpath -u "$GITHUB_WORKSPACE") && python3.${{ matrix.python-version }} -m pip install -U --no-build-isolation setuptools cysignals Cython Sphinx flake8'
- name: install
run: |
C:\\tools\\cygwin\\bin\\bash -l -x -c 'export PATH=/usr/local/bin:/usr/bin && cd $(cygpath -u "$GITHUB_WORKSPACE") && python3.${{ matrix.python-version }} setup.py build_ext -i'
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools Cython Sphinx flake8
pip install -U --no-build-isolation setuptools Cython Sphinx flake8
- name: Freeze pip
run: |
pip freeze
Expand Down Expand Up @@ -354,7 +354,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools Cython Sphinx flake8
pip install -U --no-build-isolation setuptools Cython Sphinx flake8
- name: Freeze pip
run: |
pip freeze
Expand Down

0 comments on commit 1131b03

Please sign in to comment.