-
Notifications
You must be signed in to change notification settings - Fork 139
/
dev_requirements.txt
57 lines (48 loc) · 1015 Bytes
/
dev_requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# recommand to create a suitable virtual environment first:
# python -m venv .venv --prompt=gimli
# source .venv/bin/activate
# python -m pip install -r dev_requirements.txt
# python -m pip list
# python -m pip install package==version
# needed
setuptools
#numpy<2
numpy>=2.1.3
matplotlib
pyqt5 #pyqtagg backend
pyplusplus==1.8.5
pygccxml==2.5.0
# needed to run
matplotlib>=3.7,<3.9
# useful to run
ipython
jupytext
# optional, but strongly recommended
#scipy<1.14 # for numpy 1
scipy>=1.14 # for numpy 2
scooby
#pyvista[all]<0.44; # for numpy 1
pyvista[all]>=0.44 # for numpy 2
pyqt5
tqdm
# needed to build docu
sphinx>=3.1
sphinxcontrib-bibtex
sphinxcontrib-programoutput
sphinxcontrib-doxylink
sphinx-gallery
sphinx-design
pydata-sphinx-theme
bibtexparser
# needed for testing
pytest
meshio
# needed for wheel build
wheel
auditwheel; sys_platform == 'linux'
delvewheel; sys_platform == 'win32'
delocate; sys_platform == 'darwin'
twine
# optional
#tetgen<0.6.5 # for numpy 1
tetgen>=0.6.5 # for numpy 2