Skip to content

Commit abf256b

Browse files
authored
Use PEP 508-compliant marker (#1238)
1 parent 06dc279 commit abf256b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ dynamic = ["version", "readme"]
3030

3131
[project.optional-dependencies]
3232
tests-mypy = [
33-
'pytest-mypy-plugins; python_implementation == "CPython" and python_version >= "3.8"',
33+
'pytest-mypy-plugins; platform_python_implementation == "CPython" and python_version >= "3.8"',
3434
# Since the mypy error messages keep changing, we have to keep updating this
3535
# pin.
36-
'mypy>=1.6; python_implementation == "CPython" and python_version >= "3.8"',
36+
'mypy>=1.6; platform_python_implementation == "CPython" and python_version >= "3.8"',
3737
]
3838
tests-no-zope = [
3939
# For regression test to ensure cloudpickle compat doesn't break.
40-
'cloudpickle; python_implementation == "CPython"',
40+
'cloudpickle; platform_python_implementation == "CPython"',
4141
"hypothesis",
4242
"pympler",
4343
# 4.3.0 dropped last use of `convert`

0 commit comments

Comments
 (0)