Skip to content

Commit b5576f7

Browse files
committed
support all current python versions
1 parent f704101 commit b5576f7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ jobs:
55
strategy:
66
matrix:
77
python-version:
8+
- "3.7"
89
- "3.8"
910
- "3.9"
1011
- "3.10"

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ skip_covered = true
1717

1818
[tool.black]
1919
line-length = 88
20-
target-version = ["py38"]
20+
target-version = ["py37", "py38", "py39", "py310"]
2121
include = '\.pyi?$'
2222
exclude = '''
2323
/(
@@ -33,7 +33,6 @@ exclude = '''
3333
[tool.isort]
3434
profile = "black"
3535
line_length = 88
36-
py_version = "38"
3736
lines_after_imports = 2
3837
skip = [
3938
".git",

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
author_email="mattias.lindvall@gmail.com",
1717
package_dir={"": "src"},
1818
packages=["flask_api_framework"],
19-
python_requires=">=3.8",
19+
python_requires=">=3.7",
2020
install_requires=[
2121
"flask ~= 2.0.0",
2222
"marshmallow ~= 3.14.0",
@@ -51,6 +51,7 @@
5151
# "Development Status :: 7 - Inactive",
5252
"Programming Language :: Python",
5353
"Programming Language :: Python :: 3",
54+
"Programming Language :: Python :: 3.7",
5455
"Programming Language :: Python :: 3.8",
5556
"Programming Language :: Python :: 3.9",
5657
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)