Skip to content

Commit

Permalink
Add Python 3.11 + Use Py3.9 for conda
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Oct 30, 2022
1 parent 13f2670 commit 1be0e6f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9
- uses: pre-commit/action@v2.0.0

analyse:
Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
# a pull request then we can check out the head.
fetch-depth: 2

# If this run was triggered by a pull request event, then checkout
Expand All @@ -64,7 +64,7 @@ jobs:
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
python-version: [ 3.7 ]
python-version: [ 3.9 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
strategy:
matrix:
python-version: [ 3.7 ]
python-version: [ 3.9 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -200,7 +200,7 @@ jobs:
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
strategy:
matrix:
python-version: [ 3.7 ]
python-version: [ 3.9 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -224,7 +224,7 @@ jobs:
if: ${{ needs.skip_duplicate.outputs.should_skip == 'false' }}
strategy:
matrix:
python-version: [ 3.7 ]
python-version: [ 3.9 ]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -254,10 +254,10 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9
- name: Build package
run: |
pip install wheel jupyter-packaging jupyterlab>=3
Expand All @@ -280,10 +280,10 @@ jobs:
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9
- name: Build package
run: |
pip install wheel jupyter-packaging jupyterlab>=3
Expand Down
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
comment:
after_n_builds: 11
after_n_builds: 12

coverage:
status:
Expand Down

0 comments on commit 1be0e6f

Please sign in to comment.