From: Raphael Michel Date: Tue, 24 Mar 2026 08:33:49 +0000 (+0100) Subject: Require Python 3.11+ X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f40daeeda669bf2b29b8dd57ba6afbf42744b703;p=thirdparty%2Fpython-fints.git Require Python 3.11+ --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e5cff8b..be75ee9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,10 +13,10 @@ jobs: strategy: matrix: python-version: - - "3.9" - - "3.10" - "3.11" - "3.12" + - "3.13" + - "3.14" steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 5afe991..98ea7c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,12 +18,12 @@ classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Other Audience", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] -requires-python = ">=3.9" +requires-python = ">=3.11" dependencies = [ "bleach", "mt-940",