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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
fail-fast: false
matrix:
buildplat:
- [ubuntu-20.04, manylinux, x86_64]
- [ubuntu-22.04, manylinux, x86_64]
- [macos-12, macosx, x86_64]
# - [windows-2019, win, AMD64]
- [windows-2019, win, AMD64]
python: [["cp38", "3.8"], ["cp39", "3.9"], ["cp310", "3.10"]]
steps:
- uses: actions/checkout@v3
Expand All @@ -28,13 +28,13 @@ jobs:
python-version: ${{ matrix.python[1]}}
- name: Set up Windows
run: |
choco install rtools --no-progress
choco install rtools -y --no-progress --force --version=4.0.0.20220206
echo "c:\rtools40\ucrt64\bin;" >> $env:GITHUB_PATH
if: ${{ runner.os == 'Windows' }}
- name: Set up macOS
run: brew unlink gfortran && brew link --overwrite gfortran
if: ${{ runner.os == 'macOS' }}
- uses: pypa/cibuildwheel@v2.10.1
- uses: pypa/cibuildwheel@v2.12.1
env:
CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}*
CIBW_ARCHS: ${{ matrix.buildplat[2] }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- os: macos-latest
python-version: "3.10"
nox-session: "tests"
# - os: windows-latest
# python-version: "3.10"
# nox-session: "tests"
- os: windows-latest
python-version: "3.10"
nox-session: "tests"
- os: ubuntu-latest
python-version: "3.10"
nox-session: "options"
Expand All @@ -47,7 +47,7 @@ jobs:
if: ${{ runner.os == 'macOS' }}
- name: Set up Windows
run: |
choco install rtools --no-progress
choco install rtools -y --no-progress --force --version=4.0.0.20220206
echo "c:\rtools40\ucrt64\bin;" >> $env:GITHUB_PATH
if: ${{ runner.os == 'Windows' }}
- name: Cache pip packages
Expand Down