Skip to content

Commit

Permalink
Fix #166 -- Add support for Python 3.12, drop support for 3.7 and 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Oct 4, 2024
1 parent 6f897ab commit fa831de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests
mt-940
sepaxml==2.1.*
enum-tools~=0.9.0
enum-tools~=0.12.0
bleach
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,10 @@
'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',
Expand All @@ -41,7 +40,7 @@
'mt-940',
'requests',
'sepaxml~=2.1',
'enum-tools~=0.9.0',
'enum-tools~=0.12.0',
],

packages=find_packages(include=['fints', 'fints.*']),
Expand Down

0 comments on commit fa831de

Please sign in to comment.