Skip to content

Commit

Permalink
.github/workflows/ci-sage.yml: Use updated requirements.txt instead o…
Browse files Browse the repository at this point in the history
…f repeating package list
  • Loading branch information
Matthias Koeppe committed Sep 18, 2023
1 parent 1cdd938 commit ee6d55a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,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 --no-build-isolation setuptools wheel cysignals "Cython<3" 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 -r requirements.txt'
- 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 @@ -226,7 +226,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U --no-build-isolation setuptools wheel 'Cython<3' Sphinx flake8
pip install -U --no-build-isolation -r requirements.txt
- name: Freeze pip
run: |
pip freeze
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U --no-build-isolation setuptools wheel 'Cython<3' Sphinx flake8
pip install -U --no-build-isolation -r requirements.txt
- name: Freeze pip
run: |
pip freeze
Expand Down
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
setuptools
Cython>=0.28
Sphinx>=1.6
wheel
Cython>=0.28, <3
Sphinx
flake8

0 comments on commit ee6d55a

Please sign in to comment.