Skip to content

Commit

Permalink
MAINT: Fix version specifier (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner authored Jan 30, 2023
1 parent 03ff77f commit daa93d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 3 additions & 0 deletions tests/test_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit daa93d8

Please sign in to comment.