Skip to content

Commit 1959343

Browse files
Drop support for Python 3.7 (#137)
1 parent 5985ac7 commit 1959343

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
deps:
16-
- { python: '3.7' }
1716
- { python: '3.8' }
1817
- { python: '3.9' }
1918
- { python: '3.10' }

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@
1818
'console_scripts': ['rplcd-tests=RPLCD_Tests.entrypoint:run'],
1919
},
2020
platforms=['any'],
21-
python_requires='>=3.7',
21+
python_requires='>=3.8',
2222
classifiers=[
2323
'Development Status :: 5 - Production/Stable',
2424
'Environment :: Other Environment',
2525
'Intended Audience :: Developers',
2626
'License :: OSI Approved :: MIT License',
2727
'Operating System :: POSIX',
2828
'Programming Language :: Python :: 3',
29-
'Programming Language :: Python :: 3.7',
3029
'Programming Language :: Python :: 3.8',
3130
'Programming Language :: Python :: 3.9',
3231
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)