Skip to content

Commit d1271ee

Browse files
committed
DEP: add missing lower bounds on direct dependencies (best guess)
1 parent f5721f3 commit d1271ee

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ license-files = [
1515
"LICENSE",
1616
]
1717
classifiers = [
18-
"Development Status :: 4 - Beta",
18+
"Development Status :: 5 - Production/Stable",
1919
"Framework :: Pytest",
2020
"Intended Audience :: Developers",
2121
"Topic :: Software Development :: Testing",
@@ -27,11 +27,11 @@ classifiers = [
2727
description = "pytest plugin to help with testing figures output from Matplotlib"
2828
requires-python = ">=3.9"
2929
dependencies = [
30-
"pytest",
31-
"matplotlib",
32-
"packaging",
33-
"Jinja2",
34-
"Pillow",
30+
"pytest>=5.4.0",
31+
"matplotlib>=3.3.3",
32+
"packaging>=22.0.0",
33+
"Jinja2>=2.10.2",
34+
"Pillow>=8.1.1",
3535
]
3636
dynamic = [
3737
"version",
@@ -49,12 +49,12 @@ pytest_mpl = "pytest_mpl.plugin"
4949

5050
[project.optional-dependencies]
5151
test = [
52-
"pytest-cov",
52+
"pytest-cov>=6.0.0",
5353
]
5454
docs = [
55-
"sphinx",
55+
"sphinx>=7.0.0",
5656
"mpl_sphinx_theme>=3.9.0",
57-
"sphinx_design",
57+
"sphinx_design>=0.6.0",
5858
"matplotlib==3.9.*",
5959
]
6060

0 commit comments

Comments
 (0)