Skip to content

Commit bf8b005

Browse files
Drop Python 3.10 testing, test/build for python 3.14, update macos-13 runners to macos-15-intel (westpa#515)
* drop python 3.10 testing * test and build python 3.14 * update macos-13 runners to macos-15-intel * verify dev env macos-15-intel
1 parent d1c1f49 commit bf8b005

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-latest"] # macos-latest is arm64
31-
python-version: [10, 11, 12, 13] # sub-versions of Python
31+
python-version: [10, 11, 12, 13, 14] # sub-versions of Python
3232
steps:
3333
- uses: actions/checkout@v5
3434

.github/workflows/test.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,16 @@ jobs:
3838
runs-on: "${{ matrix.os }}"
3939
strategy:
4040
matrix:
41-
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-13", "macos-latest"] # macos-13 is x86-64, macos-latest is arm64
42-
python-version: ["3.10", "3.11", "3.12", "3.13"]
41+
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-15-intel", "macos-latest"] # macos-15-intel is x86-64, macos-latest is arm64
42+
python-version: ["3.11", "3.12", "3.13", "3.14"]
4343
numpy-version: ["1", "2"]
4444
exclude:
4545
- python-version: "3.13"
4646
numpy-version: "1"
47-
- os: "ubuntu-24.04-arm"
47+
- python-version: "3.14"
4848
numpy-version: "1"
4949
- os: "ubuntu-24.04-arm"
50-
python-version: "3.10"
51-
- os: "macos-13"
52-
python-version: "3.10"
53-
- os: 'macos-latest'
54-
python-version: "3.10"
50+
numpy-version: "1"
5551
steps:
5652
- uses: actions/checkout@v5
5753
with:
@@ -106,7 +102,7 @@ jobs:
106102
install-dev:
107103
strategy:
108104
matrix:
109-
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-13", "macos-latest"] # macos-13 is x86-64, macos-latest is arm64
105+
os: ["ubuntu-latest", "ubuntu-24.04-arm", "macos-15-intel", "macos-latest"] # macos-15-intel is x86-64, macos-latest is arm64
110106

111107
name: "Verify dev env"
112108
runs-on: "${{ matrix.os }}"

0 commit comments

Comments
 (0)