diff --git a/.github/workflows/run-core-traits-tests.yml b/.github/workflows/run-core-traits-tests.yml index 54cc6661f..1bf7e1454 100644 --- a/.github/workflows/run-core-traits-tests.yml +++ b/.github/workflows/run-core-traits-tests.yml @@ -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 }} diff --git a/.github/workflows/run-style-checks.yml b/.github/workflows/run-style-checks.yml index ae5951047..a9330ed5b 100644 --- a/.github/workflows/run-style-checks.yml +++ b/.github/workflows/run-style-checks.yml @@ -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 diff --git a/.github/workflows/run-traits-tests.yml b/.github/workflows/run-traits-tests.yml index 7f87b34cf..988d78c75 100644 --- a/.github/workflows/run-traits-tests.yml +++ b/.github/workflows/run-traits-tests.yml @@ -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 }} diff --git a/.github/workflows/test-documentation-build.yml b/.github/workflows/test-documentation-build.yml index 7f602b325..de76508ce 100644 --- a/.github/workflows/test-documentation-build.yml +++ b/.github/workflows/test-documentation-build.yml @@ -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' diff --git a/.github/workflows/test-from-pypi.yml b/.github/workflows/test-from-pypi.yml index da44da818..db0001f67 100644 --- a/.github/workflows/test-from-pypi.yml +++ b/.github/workflows/test-from-pypi.yml @@ -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 @@ -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 }} @@ -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 @@ -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 }}