| 123456789101112131415161718192021222324252627282930313233343536 |
- Subject: Add Python 3.14 to the testing
- Origin: upstream, commit 0.4.27-45-gf8fb0ee <https://github.com/ahupp/python-magic/commit/0.4.27-45-gf8fb0ee>
- Author: Christian Clauss <cclauss@me.com>
- Date: Wed Sep 24 13:55:15 2025 +0200
- Python v3.14 -- October 7th
- * https://www.python.org/download/pre-releases
- * https://www.python.org/downloads/release/python-3140rc3
- * https://docs.python.org/3.14/whatsnew/3.14.html
- Like:
- * #347
- --- a/.github/workflows/ci.yml
- +++ b/.github/workflows/ci.yml
- @@ -6,16 +6,16 @@
- fail-fast: false
- matrix:
- os: ["ubuntu-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"]
- include:
- - os: macos-latest
- - python-version: "3.13"
- + python-version: "3.x"
- # - os: windows-latest # TODO: Fix the Windows test that runs in an infinite loop
- # python-version: '3.13'
- runs-on: ${{ matrix.os }}
- steps:
- - - uses: actions/checkout@v4
- - - uses: actions/setup-python@v5
- + - uses: actions/checkout@v5
- + - uses: actions/setup-python@v6
- with:
- python-version: ${{ matrix.python-version }}
- allow-prereleases: true
|