chore: widen dev deps version range (#2755)

This commit is contained in:
Jonas L 2023-10-16 10:40:46 +02:00 committed by GitHub
parent d8e722b31d
commit d071a53fdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 36 additions and 36 deletions

View file

@ -38,17 +38,17 @@ setup(
"uvicorn[standard]>=0.17.6,<0.24.0",
],
"dev": [
"django-coverage-plugin>=3.0.0,<3.2",
"django-stubs>=1.14.0,<4.3",
"djangorestframework-stubs>=1.8.0,<3.15",
"model_bakery>=1.10.1,<1.17",
"psycopg[binary]>=3.1.8,<3.2",
"pylint-django>=2.5.3,<2.6",
"pytest-django>=4.5.2,<4.6",
"requests-mock>=1.10.0,<1.12",
"django-coverage-plugin>=3.0.0,<4",
"django-stubs>=1.14.0,<5",
"djangorestframework-stubs>=1.8.0,<4",
"model_bakery>=1.10.1,<2",
"psycopg[binary]>=3.1.8,<4",
"pylint-django>=2.5.3,<3",
"pytest-django>=4.5.2,<5",
"requests-mock>=1.10.0,<2",
],
"sentry": [
"sentry-sdk[django]>=1.15.0,<1.33",
"sentry-sdk[django]>=1.15.0,<2",
],
},
)