Skip to content

Commit 72a9eea

Browse files
committed
Update dependencies
1 parent 8dec731 commit 72a9eea

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ignore = E203, E501, W503
55

66
[isort]
77
known_first_party=graphql_server
8+
profile=black
89
multi_line_output=3
910
include_trailing_comma=True
1011
force_grid_wrap=0

setup.py

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
from re import search
22
from setuptools import setup, find_packages
33

4-
install_requires = ["graphql-core>=3.2,<3.3", "typing-extensions>=4,<5"]
4+
install_requires = [
5+
"graphql-core>=3.2,<3.3",
6+
"Jinja2>=3.1,<4",
7+
"typing-extensions>=4,<5",
8+
]
59

610
tests_requires = [
7-
"pytest>=6.2,<6.3",
8-
"pytest-asyncio>=0.16,<1",
9-
"pytest-cov>=3,<4",
10-
"aiohttp>=3.8,<4",
11-
"Jinja2>=2.11,<3",
11+
"pytest>=7.2,<8",
12+
"pytest-asyncio>=0.20,<1",
13+
"pytest-cov>=4,<5",
1214
]
1315

1416
dev_requires = [
15-
"flake8>=4,<5",
17+
"flake8>=5,<6",
1618
"isort>=5,<6",
17-
"black>=19.10b0",
18-
"mypy>=0.931,<1",
19+
"black>=22.12,<22.13",
20+
"mypy>=0.991,<1",
1921
"check-manifest>=0.47,<1",
2022
] + tests_requires
2123

@@ -35,7 +37,7 @@
3537
"aiohttp>=3.8,<4",
3638
]
3739

38-
install_quart_requires = ["quart>=0.6.15,<0.15"]
40+
install_quart_requires = ["quart>=0.15,<1"]
3941

4042
install_all_requires = (
4143
install_requires

0 commit comments

Comments
 (0)