1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# numpy based on python version and NEP-29 requirements
numpy; python_version == '3.11'
numpy; python_version == '3.12'
numpy; python_version == '3.13'
numpy~=1.25.0; python_version == '3.10'
# image testing
scipy==1.15.2
# optional high performance paths
numba==0.60.0; python_version == '3.10'
# optional 3D
pyopengl==3.1.10
# supplimental tools
matplotlib==3.10.6
h5py==3.15.1
# testing
pytest==8.4.2
pytest-qt==4.4.0
pytest-xdist==3.8.0
pytest-xvfb==3.1.1; sys_platform == 'linux'
|