]> git.ipfire.org Git - thirdparty/python-fints.git/commitdiff
Fix #166 -- Add support for Python 3.12, drop support for 3.7 and 3.8
authorRaphael Michel <michel@rami.io>
Fri, 4 Oct 2024 13:54:17 +0000 (15:54 +0200)
committerRaphael Michel <michel@rami.io>
Fri, 4 Oct 2024 13:54:58 +0000 (15:54 +0200)
.github/workflows/tests.yml
requirements.txt
setup.py

index 66b9a09baccded6681740c074ef5d6272cf8a415..16d0fda6dd34d184994dbbec2d14461d243da25d 100644 (file)
@@ -13,11 +13,10 @@ jobs:
     strategy:
       matrix:
         python-version:
-          - "3.7"
-          - "3.8"
           - "3.9"
           - "3.10"
           - "3.11"
+          - "3.12"
     steps:
       - uses: actions/checkout@v2
       - name: Set up Python ${{ matrix.python-version }}
index dd0e2861fd73c7f5828d3ccf1b8e4cab6b75d971..c3c294910b72f4763408a1381162c9ff9b6e9bd6 100644 (file)
@@ -1,5 +1,5 @@
 requests
 mt-940
 sepaxml==2.1.*
-enum-tools~=0.9.0
+enum-tools~=0.12.0
 bleach
index f820bde23c80d2ab00c18bfda6d9160fb84af245..017520d179aa9d3750879205be7230d558e16d65 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -28,11 +28,10 @@ setup(
         'Intended Audience :: Developers',
         'Intended Audience :: Other Audience',
         'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
-        'Programming Language :: Python :: 3.6',
-        'Programming Language :: Python :: 3.7',
-        'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
+        'Programming Language :: Python :: 3.12',
     ],
 
     keywords='hbci banking fints',
@@ -41,7 +40,7 @@ setup(
         'mt-940',
         'requests',
         'sepaxml~=2.1',
-        'enum-tools~=0.9.0',
+        'enum-tools~=0.12.0',
     ],
 
     packages=find_packages(include=['fints', 'fints.*']),