Skip to content

Commit

Permalink
Use PEP 508-compliant marker (#1238)
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek authored Feb 16, 2024
1 parent 06dc279 commit abf256b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ dynamic = ["version", "readme"]

[project.optional-dependencies]
tests-mypy = [
'pytest-mypy-plugins; python_implementation == "CPython" and python_version >= "3.8"',
'pytest-mypy-plugins; platform_python_implementation == "CPython" and python_version >= "3.8"',
# Since the mypy error messages keep changing, we have to keep updating this
# pin.
'mypy>=1.6; python_implementation == "CPython" and python_version >= "3.8"',
'mypy>=1.6; platform_python_implementation == "CPython" and python_version >= "3.8"',
]
tests-no-zope = [
# For regression test to ensure cloudpickle compat doesn't break.
'cloudpickle; python_implementation == "CPython"',
'cloudpickle; platform_python_implementation == "CPython"',
"hypothesis",
"pympler",
# 4.3.0 dropped last use of `convert`
Expand Down

0 comments on commit abf256b

Please sign in to comment.