Skip to content

Commit 9c1bbc1

Browse files
committed
Drop Python 3.7 support
1 parent 5328ef2 commit 9c1bbc1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python_version: [3.7, 3.8, 3.9, '3.10', '3.11']
11+
python_version: [3.8, 3.9, '3.10', '3.11']
1212

1313
services:
1414
mongo:
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Python
5555
uses: actions/setup-python@v4
5656
with:
57-
python-version: 3.7
57+
python-version: 3.8
5858
- name: Install dependencies
5959
shell: bash
6060
run: |

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,14 @@ classifiers = [
7070
"Framework :: FastAPI",
7171
"Framework :: AsyncIO",
7272
"Intended Audience :: Developers",
73-
"Programming Language :: Python :: 3.7",
7473
"Programming Language :: Python :: 3.8",
7574
"Programming Language :: Python :: 3.9",
7675
"Programming Language :: Python :: 3.10",
7776
"Programming Language :: Python :: 3.11",
7877
"Programming Language :: Python :: 3 :: Only",
7978
"Topic :: Internet :: WWW/HTTP :: Session",
8079
]
81-
requires-python = ">=3.7"
80+
requires-python = ">=3.8"
8281
dependencies = [
8382
"fastapi-users >= 10.0.1",
8483
"beanie >=1.11.0,<2.0.0",

0 commit comments

Comments
 (0)