Skip to content

Commit 4a919b4

Browse files
beaufourclaude
andcommitted
Remove unnecessary upper bounds from dependency constraints
None of the upper bounds were protecting against known incompatibilities, and setuptools was close to being blocked (latest 80.10.2 vs cap of 81.0). Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 74b2789 commit 4a919b4

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

pyproject.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,28 @@ classifiers = [
1616
"Programming Language :: Python :: 3.13",
1717
]
1818
dependencies = [
19-
"flickr-api>=0.8.0,<0.9",
20-
"python-dateutil>=2.8.1,<3",
21-
"PyYAML>=5.3,<7.0",
22-
"pathvalidate>=2.5.2,<4.0.0",
23-
"interrogate>=1.5.0,<2",
24-
"usingversion>=0.1.2,<0.2",
25-
"setuptools>=75.1,<81.0",
19+
"flickr-api>=0.8.0",
20+
"python-dateutil>=2.8.1",
21+
"PyYAML>=5.3",
22+
"pathvalidate>=2.5.2",
23+
"interrogate>=1.5.0",
24+
"usingversion>=0.1.2",
25+
"setuptools>=75.1",
2626
]
2727

2828
[project.optional-dependencies]
2929
dev = [
30-
"pytest>=7.2,<10.0",
30+
"pytest>=7.2",
3131
"ruff>=0.9",
32-
"pre-commit>=2.20,<5.0",
32+
"pre-commit>=2.20",
3333
"mypy>=1.0",
3434
"types-PyYAML",
3535
"types-python-dateutil",
3636
"types-requests",
3737
]
3838
extras = [
39-
"coverage>=6.5,<8.0",
40-
"python-coveralls>=2.9.3,<3",
39+
"coverage>=6.5",
40+
"python-coveralls>=2.9.3",
4141
]
4242

4343
[project.scripts]
@@ -52,15 +52,15 @@ build-backend = "hatchling.build"
5252

5353
[dependency-groups]
5454
dev = [
55-
"pytest>=7.2,<10.0",
55+
"pytest>=7.2",
5656
"ruff>=0.9",
57-
"pre-commit>=2.20,<5.0",
57+
"pre-commit>=2.20",
5858
"mypy>=1.0",
5959
"types-PyYAML",
6060
"types-python-dateutil",
6161
"types-requests",
62-
"coverage>=6.5,<8.0",
63-
"python-coveralls>=2.9.3,<3",
62+
"coverage>=6.5",
63+
"python-coveralls>=2.9.3",
6464
]
6565

6666
[tool.ruff]

uv.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)