Skip to content

Commit f35ff40

Browse files
authored
Merge branch 'master' into abi3-wheels
2 parents f99e6de + 07bd5dd commit f35ff40

2 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/dependabot.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
# Keep GitHub Actions up to date with GitHub's Dependabot...
2+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
3+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
14
version: 2
25
updates:
3-
- package-ecosystem: "github-actions"
4-
directory: "/"
5-
schedule:
6-
interval: "monthly"
6+
- package-ecosystem: github-actions
7+
directory: /
78
groups:
89
github-actions:
910
patterns:
10-
- "*"
11+
- "*" # Group all Actions updates into a single larger pull request
12+
schedule:
13+
interval: weekly

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: ["ubuntu-latest"]
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1313
include:
1414
- os: macos-latest
15-
python-version: "3.13"
15+
python-version: "3.x"
1616
# - os: windows-latest # TODO: Fix the Windows test that runs in an infinite loop
1717
# python-version: '3.13'
1818
runs-on: ${{ matrix.os }}
1919
steps:
20-
- uses: actions/checkout@v4
21-
- uses: actions/setup-python@v5
20+
- uses: actions/checkout@v5
21+
- uses: actions/setup-python@v6
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
allow-prereleases: true

0 commit comments

Comments
 (0)