Browse Source

🔧 Update test dependencies, upgrade Pytest, move dependencies from dev to test (#5396)

pull/5398/head
Sebastián Ramírez 3 years ago
committed by GitHub
parent
commit
3658733b5e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      pyproject.toml

7
pyproject.toml

@ -49,7 +49,7 @@ Documentation = "https://fastapi.tiangolo.com/"
[project.optional-dependencies] [project.optional-dependencies]
test = [ test = [
"pytest >=6.2.4,<7.0.0", "pytest >=7.1.3,<8.0.0",
"pytest-cov >=2.12.0,<4.0.0", "pytest-cov >=2.12.0,<4.0.0",
"mypy ==0.910", "mypy ==0.910",
"flake8 >=3.8.3,<6.0.0", "flake8 >=3.8.3,<6.0.0",
@ -66,6 +66,9 @@ test = [
"python-multipart >=0.0.5,<0.0.6", "python-multipart >=0.0.5,<0.0.6",
"flask >=1.1.2,<3.0.0", "flask >=1.1.2,<3.0.0",
"anyio[trio] >=3.2.1,<4.0.0", "anyio[trio] >=3.2.1,<4.0.0",
"python-jose[cryptography] >=3.3.0,<4.0.0",
"pyyaml >=5.3.1,<7.0.0",
"passlib[bcrypt] >=1.7.2,<2.0.0",
# types # types
"types-ujson ==4.2.1", "types-ujson ==4.2.1",
@ -82,8 +85,6 @@ doc = [
"pyyaml >=5.3.1,<7.0.0", "pyyaml >=5.3.1,<7.0.0",
] ]
dev = [ dev = [
"python-jose[cryptography] >=3.3.0,<4.0.0",
"passlib[bcrypt] >=1.7.2,<2.0.0",
"autoflake >=1.4.0,<2.0.0", "autoflake >=1.4.0,<2.0.0",
"flake8 >=3.8.3,<6.0.0", "flake8 >=3.8.3,<6.0.0",
"uvicorn[standard] >=0.12.0,<0.18.0", "uvicorn[standard] >=0.12.0,<0.18.0",

Loading…
Cancel
Save