Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-13]
os: [ubuntu-22.04, windows-2022, macos-13]
cibw-build-prefix: ['*']
cibw-build-kind: [all] # for artifact name only
include:
- os: ubuntu-20.04
- os: ubuntu-22.04
cibw-build-prefix: cp*
cibw-build-kind: cp
- os: ubuntu-20.04
- os: ubuntu-22.04
cibw-build-prefix: pp*
cibw-build-kind: pp
exclude:
- os: ubuntu-20.04
- os: ubuntu-22.04
cibw-build-prefix: '*'
cibw-build-kind: all
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
strategy:
matrix:
python-version: ["3.7"]
os: [ubuntu-20.04, windows-2019, macos-13]
os: [ubuntu-22.04, windows-2022, macos-13]
include:
# set OS-specific cache paths
- os: ubuntu-20.04
- os: ubuntu-22.04
path: ~/.cache/pip
- os: windows-2019
- os: windows-2022
path: ~\AppData\Local\pip\Cache
- os: macos-13
path: ~/Library/Caches/pip
# more combinations:
- os: ubuntu-20.04
- os: ubuntu-22.04
python-version: "pypy3.9"
path: ~/.cache/pip
steps:
Expand Down
Loading