Skip to content

Commit 503aa5c

Browse files
committed
drop support for python 3.6, as of 2 more dependencies would be needed, added banners in readme
1 parent cd1f351 commit 503aa5c

File tree

7 files changed

+247
-279
lines changed

7 files changed

+247
-279
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-20.04
1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: [3.7, 3.8, 3.9]
1313

1414
services:
1515
postgres:

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
<a href="https://github.com/rafsaf/minimal-fastapi-postgres-template/actions?query=workflow%3Atests" target="_blank">
2+
<img src="https://github.com/rafsaf/minimal-fastapi-postgres-template/workflows/tests/badge.svg" alt="Test">
3+
</a>
4+
5+
<a href="https://github.com/rafsaf/respo/blob/main/LICENSE" target="_blank">
6+
<img src="https://img.shields.io/github/license/rafsaf/respo" alt="License">
7+
</a>
8+
19
## Minimal async FastAPI + postgresql template
210

311
![OpenAPIexample](./docs/OpenAPI_example.png)

{{cookiecutter.project_name}}/app/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import toml
2626
from pydantic import AnyHttpUrl, AnyUrl, BaseSettings, EmailStr, validator
2727

28-
# Literal from typing_extensions for python 3.6 and 3.7 support, remove if not needed
28+
# Literal from typing_extensions for python 3.7 support, remove if not needed
2929
try:
3030
from typing import Literal
3131
except ImportError:

0 commit comments

Comments
 (0)