From daa93d809d6df3511c3b6c84ea04268ce53aa678 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Mon, 30 Jan 2023 09:56:01 -0500 Subject: [PATCH] MAINT: Fix version specifier (#296) --- setup.py | 2 +- tests/test_plotting.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 240fc290..3ee0fd5d 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ url='https://github.com/pyvista/pyvistaqt', keywords='vtk numpy plotting mesh qt', - python_requires='>=3.7.*', + python_requires='>=3.7', install_requires=[ 'pyvista>=0.32.0', 'QtPy>=1.9.0', diff --git a/tests/test_plotting.py b/tests/test_plotting.py index 35fccc50..5059f53c 100644 --- a/tests/test_plotting.py +++ b/tests/test_plotting.py @@ -553,6 +553,9 @@ def test_background_plotter_export_vtkjs(qtbot, tmpdir, show_plotter, plotting): assert os.path.isfile(filename + '.vtkjs') +# vtkWeakReference and vtkFloatArray, only sometimes -- usually PySide2 +# but also sometimes macOS +@pytest.mark.allow_bad_gc def test_background_plotting_orbit(qtbot, plotting): plotter = BackgroundPlotter(off_screen=False, title='Testing Window') plotter.add_mesh(pyvista.Sphere())