From ccbcf1f2b913b3de860a015524ebc8ec9ec8c6af Mon Sep 17 00:00:00 2001 From: scito Date: Sat, 11 Oct 2025 20:24:40 +0200 Subject: [PATCH] support Python 3.14 --- .github/workflows/ci.yml | 6 ++---- README.md | 2 +- pyproject.toml | 1 + 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70bcd42..0548ff4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,9 +24,7 @@ jobs: # 3.x is used to run code coverage python-version: ["3.x", "3.14", "3.13", "3.12", "3.11", "3.10", "3.9"] platform: [ubuntu-latest, macos-latest, windows-latest, ubuntu-24.04-arm, macos-15-intel] - exclude: - - python-version: "3.14" - platform: windows-latest +# exclude: runs-on: ${{ matrix.platform }} @@ -37,7 +35,7 @@ jobs: with: python-version: ${{ matrix.python-version }} check-latest: ${{ github.event_name == 'schedule' }} - allow-prereleases: true + allow-prereleases: false - name: Install zbar shared lib for QReader (Linux) if: runner.os == 'Linux' run: | diff --git a/README.md b/README.md index c803cc1..a72803b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![coverage](https://img.shields.io/badge/coverage-95%25-brightgreen) [![License](https://img.shields.io/github/license/scito/extract_otp_secrets)](https://github.com/scito/extract_otp_secrets/blob/master/LICENSE) [![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/scito/extract_otp_secrets?sort=semver)](https://github.com/scito/extract_otp_secrets/releases/latest) -![python versions](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue) +![python versions](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue) [![Docker image](https://img.shields.io/badge/docker-image-blue)](https://hub.docker.com/repository/docker/scit0/extract_otp_secrets/general) [![Linux](https://img.shields.io/badge/os-linux-yellow)](https://github.com/scito/extract_otp_secrets/releases/latest) [![Windows](https://img.shields.io/badge/os-windows-yellow)](https://github.com/scito/extract_otp_secrets/releases/latest) diff --git a/pyproject.toml b/pyproject.toml index ec33a73..4dee33c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Intended Audience :: End Users/Desktop", "Intended Audience :: Developers", "Intended Audience :: System Administrators",