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 authored and Matthias Koeppe committed Sep 18, 2023
1 parent 0fd5573 commit 25d5f7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,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 @@ -221,7 +221,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 @@ -267,7 +267,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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build: configure
$(PYTHON) setup.py build

install: configure
$(PIP) install --no-index --ignore-installed --no-deps .
$(PIP) install --no-build-isolation --no-index --ignore-installed --no-deps .

dist: configure
chmod -R go+rX-w .
Expand Down

0 comments on commit 25d5f7e

Please sign in to comment.