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:
committed by
GitHub
parent
31c81b9a23
commit
bd9f707281
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -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:
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user