Skip to content

Commit

Permalink
Merge pull request #111 from kevinsung/fix-ci
Browse files Browse the repository at this point in the history
remove nonexistent notebook tests from CI
  • Loading branch information
kevinsung authored May 10, 2024
2 parents 56c2fcb + fe8549d commit b001372
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install tox
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test_latest_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches:
- main
schedule:
- cron: '0 1 * * *'
- cron: "0 1 * * *"

jobs:
tests:
Expand All @@ -17,16 +17,16 @@ jobs:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.9, '3.10']
python-version: [3.8, 3.9, "3.10", "3.11"]
include:
- os: macos-latest
python-version: 3.8
python-version: "3.11"
- os: windows-latest
python-version: 3.8
python-version: "3.11"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -42,4 +42,4 @@ jobs:
shell: bash
run: |
pver=${{ matrix.python-version }}
tox -epy${pver/./},py${pver/./}-notebook
tox -epy${pver/./}
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.25
envlist = py{38,39,310}, lint, mypy, format, coverage, docs
envlist = py{38,39,310,311}, lint, mypy, format, coverage, docs
isolated_build = True

[testenv]
Expand Down

0 comments on commit b001372

Please sign in to comment.