Don't test with matplotlib on PyPy

This commit is contained in:
Sergey B Kirpichev
2024-08-15 08:53:50 +03:00
parent 37a6271681
commit 112628c9e9
+4 -3
View File
@@ -31,12 +31,13 @@ Homepage = 'https://mpmath.org/'
Documentation = 'http://mpmath.org/doc/current/'
[project.optional-dependencies]
tests = ['pytest>=6', 'numpy; python_version<"3.13"', 'packaging',
'matplotlib; python_version<"3.13"', 'pexpect', 'ipython',
'hypothesis']
'matplotlib; python_version<"3.13" and platform_python_implementation!="PyPy"',
'pexpect', 'ipython', 'hypothesis']
develop = ['mpmath[tests]', 'flake518>=1.5; python_version>="3.9"',
'pytest-cov', 'wheel', 'build']
gmpy = ['gmpy2>=2.2; platform_python_implementation!="PyPy"']
docs = ['sphinx', 'matplotlib; python_version<"3.13"',
docs = ['sphinx',
'matplotlib; python_version<"3.13" and platform_python_implementation!="PyPy"',
'sphinxcontrib-autoprogram']
ci = ['pytest-xdist', 'diff_cover']
[tool.setuptools]