Skip to content

Commit 2c61f7e

Browse files
committed
Remove support of python3.7/3.8
1 parent 71c9299 commit 2c61f7e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
## Tools
1919

2020
### Production
21-
- python 3.7+
21+
- python 3.9+
2222
- [flake8](http://flake8.pycqa.org/en/latest/)
2323

2424
### Development

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.flake8]
2-
min_python_version = "3.8.0"
2+
min_python_version = "3.9.0"
33
max_complexity = 10
44
max-line-length = 80
55
statistics = true
@@ -9,7 +9,7 @@ eradicate-aggressive = true
99
[tool.black]
1010
line-length = 80
1111
skip-string-normalization = true
12-
target-version = ["py38", "py39", "py310", "py311", "py312", "py313", "py314"]
12+
target-version = ["py39", "py310", "py311", "py312", "py313", "py314"]
1313
exclude = '''
1414
/(
1515
\.pytest_cache

requirements-dev.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
black==25.9.0
22
flake8>=4.0.1
3-
pytest==7.0.1
3+
pytest==8.4.2
44
pytest-cov==3.0.0
55
coverage==5.3
66
coveralls==2.1.2
7+
setuptools==80.9.0
8+
wheel==0.45.1

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ def __load_requirements() -> Sequence[str]:
4343
'Intended Audience :: Developers',
4444
f'License :: OSI Approved :: {Meta.license}',
4545
'Programming Language :: Python',
46-
'Programming Language :: Python :: 3.7',
47-
'Programming Language :: Python :: 3.8',
4846
'Programming Language :: Python :: 3.9',
4947
'Programming Language :: Python :: 3.10',
5048
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)