Skip to content

Commit 4f36613

Browse files
committed
Update OS and Python versions in workflows
1 parent f58c990 commit 4f36613

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/run-core-traits-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1414

1515
runs-on: ${{ matrix.os }}
1616

.github/workflows/run-style-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v6
11-
- name: Set up Python 3.10
11+
- name: Set up Python
1212
uses: actions/setup-python@v6
1313
with:
14-
python-version: '3.10'
14+
python-version: '3.13'
1515
- name: Install dependencies and local packages
1616
run: |
1717
python -m pip install flake8

.github/workflows/run-traits-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, windows-latest, macos-latest]
10-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
10+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1111

1212
runs-on: ${{ matrix.os }}
1313

.github/workflows/test-documentation-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88

99
steps:
1010
- uses: actions/checkout@v6
11-
- name: Set up Python 3.10
11+
- name: Set up Python
1212
uses: actions/setup-python@v6
1313
with:
14-
python-version: '3.10'
14+
python-version: '3.13'
1515
- name: Install dependencies and local packages
1616
run: python -m pip install .[docs]
1717
- name: Build HTML documentation with Sphinx

.github/workflows/test-from-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test-pypi-sdist:
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1414
platform:
1515
- os: ubuntu-latest
1616
architecture: x64
@@ -20,7 +20,7 @@ jobs:
2020
architecture: x86
2121
- os: macos-latest
2222
architecture: arm64
23-
- os: macos-13
23+
- os: macos-15-intel
2424
architecture: x64
2525

2626
runs-on: ${{ matrix.platform.os }}
@@ -44,7 +44,7 @@ jobs:
4444
test-pypi-wheel:
4545
strategy:
4646
matrix:
47-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
47+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
4848
platform:
4949
- os: ubuntu-latest
5050
architecture: x64
@@ -54,7 +54,7 @@ jobs:
5454
architecture: x86
5555
- os: macos-latest
5656
architecture: arm64
57-
- os: macos-13
57+
- os: macos-15-intel
5858
architecture: x64
5959

6060
runs-on: ${{ matrix.platform.os }}

0 commit comments

Comments
 (0)