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
2 changes: 1 addition & 1 deletion .github/workflows/run-core-traits-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']

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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-style-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- uses: actions/checkout@v6
- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
python-version: '3.13'
- name: Install dependencies and local packages
run: |
python -m pip install flake8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-traits-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-documentation-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- uses: actions/checkout@v6
- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-from-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test-pypi-sdist:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
platform:
- os: ubuntu-latest
architecture: x64
Expand All @@ -20,7 +20,7 @@ jobs:
architecture: x86
- os: macos-latest
architecture: arm64
- os: macos-13
- os: macos-15-intel
architecture: x64

runs-on: ${{ matrix.platform.os }}
Expand All @@ -44,7 +44,7 @@ jobs:
test-pypi-wheel:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
platform:
- os: ubuntu-latest
architecture: x64
Expand All @@ -54,7 +54,7 @@ jobs:
architecture: x86
- os: macos-latest
architecture: arm64
- os: macos-13
- os: macos-15-intel
architecture: x64

runs-on: ${{ matrix.platform.os }}
Expand Down
Loading