pyqtgraph/tox.ini
Kyle Sunden 3b1e55af1e
MAINT: Post 0.11.1 release, drop py2, qt4 (#1473)
* MAINT: Post 0.11.1 release, drop py2, qt4

This focuses on distribution, tests, and docs. This may not be comprehensive, but covers the cases I found by looking and a few greps

Noteably, this does not change any actual internal code yet, to avoid merge conflicts with pending PRs.

* NEP 29 language/versions
2020-12-22 10:25:06 -08:00

45 lines
767 B
INI

[tox]
envlist =
; qt latest
py{37,38}-{pyqt5,pyside2}_latest
; qt 5.12.x (LTS)
py{36,37}-{pyqt5,pyside2}_512
; qt 5.9.7 (LTS)
py36-{pyqt5,pyside2}_59_conda
[base]
deps =
pytest
numpy
scipy
pyopengl
flake8
six
coverage
[testenv]
passenv = DISPLAY XAUTHORITY
setenv = PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command
deps=
{[base]deps}
pytest-cov
h5py
pyside2_512: pyside2>=5.12,<5.13
pyqt5_512: pyqt5>=5.12,<5.13
pyside2_latest: pyside2
pyqt5_latest: pyqt5
conda_deps=
pyside2_59_conda: pyside2=5.9
pyqt5_59_conda: pyqt=5.9
conda_channels=
conda-forge
free
commands=
python -c "import pyqtgraph as pg; pg.systemInfo()"
pytest {posargs:}