From abf256b08312c43f8f08f62074636d280fcbbbc0 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Fri, 16 Feb 2024 10:12:37 +0100 Subject: [PATCH] Use PEP 508-compliant marker (#1238) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 44e9f9bd..a8549bdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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`