Skip to content

Commit 4feb168

Browse files
Merge pull request #50 from widgetti/ci/fix-runners
ci: move off retired ubuntu-20.04 runner and pin ruff for generated-code tests
2 parents 51e6eda + 9154cfb commit 4feb168

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codequality.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
code-quality:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
strategy:
1010
fail-fast: false
1111
matrix:

.github/workflows/unittest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717

1818
unit-test:
1919
needs: [build, code-quality]
20-
runs-on: ubuntu-20.04
20+
runs-on: ubuntu-22.04
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
24+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
2525

2626
steps:
2727
- uses: actions/checkout@v4
@@ -35,6 +35,6 @@ jobs:
3535
path: ./dist
3636
- name: Install
3737
run: |
38-
pip install `echo dist/*.whl`[dev]
38+
pip install `echo dist/*.whl`[dev] "bqplot<0.13" "pandas<3" "ruff==0.8.3"
3939
- name: test
4040
run: pytest --cov=reacton reacton

0 commit comments

Comments
 (0)