Skip to content

Commit e50b7c5

Browse files
committed
use sparse style to specify dependencies in pyproject.toml
1 parent 862e5e8 commit e50b7c5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ classifiers = [
3030
dynamic = ["version", "readme"]
3131

3232
dependencies = [
33-
"aiohttp >=3.9.2, <4.0.0",
34-
"aioitertools >=0.5.1, <1.0.0",
35-
"botocore >=1.35.74, <1.35.89", # NOTE: When updating, always keep `project.optional-dependencies` aligned
36-
"python-dateutil >=2.1, <3.0.0",
37-
"jmespath >=0.7.1, <2.0.0",
38-
"multidict >=6.0.0, <7.0.0",
39-
"urllib3 >=1.25.4, <1.27; python_version<'3.10'",
40-
"urllib3 >=1.25.4, !=2.2.0, <3; python_version>='3.10'",
41-
"wrapt >=1.10.10, <2.0.0",
33+
"aiohttp >= 3.9.2, < 4.0.0",
34+
"aioitertools >= 0.5.1, < 1.0.0",
35+
"botocore >= 1.35.74, < 1.35.89", # NOTE: When updating, always keep `project.optional-dependencies` aligned
36+
"python-dateutil >= 2.1, < 3.0.0",
37+
"jmespath >= 0.7.1, < 2.0.0",
38+
"multidict >= 6.0.0, < 7.0.0",
39+
"urllib3 >= 1.25.4, < 1.27; python_version < '3.10'",
40+
"urllib3 >= 1.25.4, != 2.2.0, < 3; python_version >= '3.10'",
41+
"wrapt >= 1.10.10, < 2.0.0",
4242
]
4343

4444
[project.optional-dependencies]
4545
awscli = [
46-
"awscli >=1.36.15, <1.36.30",
46+
"awscli >= 1.36.15, < 1.36.30",
4747
]
4848
boto3 = [
49-
"boto3 >=1.35.74, <1.35.89",
49+
"boto3 >= 1.35.74, < 1.35.89",
5050
]
5151

5252
[project.urls]

0 commit comments

Comments
 (0)