1
0
mirror of https://github.com/ycd/manage-fastapi.git synced 2021-11-08 01:34:39 +03:00

Support Python 3.9 (#38)

This commit is contained in:
Marcelo Trylesinski
2021-09-02 21:13:00 +02:00
committed by GitHub
parent 31c81b9a23
commit bd9f707281
3 changed files with 4 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
fail-fast: true
steps:

View File

@@ -24,6 +24,7 @@ class PythonVersion(BaseEnum):
THREE_DOT_SIX = "3.6"
THREE_DOT_SEV = "3.7"
THREE_DOT_EIG = "3.8"
THREE_DOT_NIN = "3.9"
class License(BaseEnum):

View File

@@ -23,12 +23,13 @@ classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
bullet = "^2.2.0"
cookiecutter = "^1.7.2"
pydantic = {extras = ["email"], version = "^1.7.2"}
pydantic = { extras = ["email"], version = "^1.7.2" }
python = "^3.6.1"
typer = "^0.3.2"