We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040f60a commit 83000b1Copy full SHA for 83000b1
pyproject.toml
@@ -58,7 +58,8 @@ PayPal = "https://paypal.me/ktusar"
58
dev = [
59
"pytest>=8.1.2",
60
"pytest-cov>=5.0.0",
61
- "mypy>=1.10.0",
+ "mypy>=1.10.0; platform_python_implementation != \"PyPy\"",
62
+ "mypy<1.19; platform_python_implementation == \"PyPy\"",
63
"toml>=0.10.2",
64
"tox",
65
"black",
requirements_dev.txt
@@ -1,7 +1,8 @@
1
pytest>=8.1.2
2
pytest-cov>=5.0.0
3
-mypy>=1.10.0
+mypy>=1.10.0; platform_python_implementation != "PyPy"
4
+mypy<1.19; platform_python_implementation == "PyPy"
5
toml>=0.10.2
6
tox
7
black
-isort
8
+isort
0 commit comments