Skip to content

Commit

Permalink
test newer Python, update setuptools if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpase authored Aug 16, 2023
1 parent 27262e7 commit 653cebc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
fail-fast: false
matrix:
python-version-start: [python-3]
python-version: [6, 7, 8]
python-version: [7, 8, 9]
steps:
- run: |
git config --global core.autocrlf false
Expand All @@ -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 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 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 @@ -227,7 +227,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- name: Set up the repository
uses: actions/checkout@v2
Expand All @@ -241,7 +241,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools Cython Sphinx flake8
pip install -U setuptools Cython Sphinx flake8
- name: Freeze pip
run: |
pip freeze
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- name: Set up the repository
uses: actions/checkout@v2
Expand All @@ -354,7 +354,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools Cython Sphinx flake8
pip install -U setuptools Cython Sphinx flake8
- name: Freeze pip
run: |
pip freeze
Expand Down

0 comments on commit 653cebc

Please sign in to comment.