Skip to content

Commit

Permalink
Remove python 3.5 support
Browse files Browse the repository at this point in the history
because it does not working with pyyaml >= 6.
Additionally, python 3.5 is deprecated
  • Loading branch information
MoritzR committed May 5, 2022
1 parent 77f8a75 commit a0b254f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def readme():
author='Moritz Rumpf',
author_email='moritz.rumpf@gmail.com',
license='MIT',
python_requires='>=3.5.0',
python_requires='>=3.6.0',
entry_points={
'console_scripts': ['fints2ledger=fints2ledger.main:main'],
},
Expand All @@ -26,8 +26,10 @@ def readme():
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.5',
'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',
],
)

0 comments on commit a0b254f

Please sign in to comment.