File tree Expand file tree Collapse file tree 4 files changed +53
-30
lines changed Expand file tree Collapse file tree 4 files changed +53
-30
lines changed Original file line number Diff line number Diff line change 1111else :
1212 USER_DIR = os .environ ["HOME" ] + "/.local/share/" + PACKAGE_NAME
1313
14- __version__ = "1.3.8 "
14+ __version__ = "1.3.9 "
1515
1616init_default_log ()
Original file line number Diff line number Diff line change 1+ cloudpickle>=1.3.0
2+ ezdxf==0.14.2
3+ h5py>=3.2.1
4+ matplotlib>=3.3.2
5+ meshio>=4.0.15
6+ numpy>1.19.5
7+ pandas>=1.0.3
8+ pyfemm>=0.1.1;platform_system=="Windows"
9+ PySide2>=5.15.2
10+ pyuff>=1.25
11+ pyvista>=0.25.3
12+ quadpy
13+ SciDataTool>=2.3.11
14+ scipy>=1.4.1
15+ setuptools
16+ swat_em>=0.6.3
17+ xlrd>=1.2.0
18+ xlwt>=1.3.0
19+ ddt>=1.3.1
20+ deap>=1.3.1
21+ hypothesis
22+ mock>=4.0.2
23+ nbconvert
24+ nbformat
25+ pytest>=5.4.1
26+ pytest-qt>=3.3.0
27+ smoot>=0.1.0
Original file line number Diff line number Diff line change 11cloudpickle >= 1.3.0
2- ddt >= 1.3.1
3- deap >= 1.3.1
42ezdxf == 0.14.2
53h5py >= 3.2.1
64matplotlib >= 3.3.2
75meshio >= 4.0.15
8- mock >= 4.0.2
9- nbconvert
10- nbformat
116numpy > 1.19.5
127pandas >= 1.0.3
138pyfemm >= 0.1.1 ;platform_system == "Windows"
149PySide2 >= 5.15.2
15- pytest >= 5.4.1
16- pytest-qt >= 3.3.0
1710pyuff >= 1.25
1811pyvista >= 0.25.3
1912quadpy
20- SciDataTool >= 2.0.6
13+ SciDataTool >= 2.3.11
2114scipy >= 1.4.1
2215setuptools
2316swat_em >= 0.6.3
2417xlrd >= 1.2.0
2518xlwt >= 1.3.0
26- hypothesis
27- smoot
Original file line number Diff line number Diff line change 2121# Release 1.1.0 : 1.1.0
2222# First post release of the release 1.1.0 : 1.1.0.post1
2323
24- PYLEECAN_VERSION = "1.3.8 "
24+ PYLEECAN_VERSION = "1.3.9 "
2525
2626
2727with open ("README.md" , "r" ) as fh :
2828 long_description = fh .read ()
2929
3030python_requires = ">= 3.6"
3131
32- # Pyleecan dependancies
32+ # Pyleecan main dependancies
3333install_requires = [
34- "setuptools" ,
3534 "cloudpickle>=1.3.0" ,
35+ "ezdxf==0.14.2" ,
36+ "h5py>=3.2.1" ,
3637 "matplotlib>=3.3.2" ,
38+ "meshio>=4.0.15" ,
3739 "numpy>1.19.5" ,
3840 "pandas>=1.0.3" ,
3941 'pyfemm>=0.1.1;platform_system=="Windows"' ,
4042 "PySide2>=5.15.2" ,
41- "swat_em>=0.6.3" ,
43+ "pyuff>=1.25" ,
44+ "pyvista>=0.25.3" ,
45+ "quadpy" ,
46+ "SciDataTool>=2.3.11" ,
4247 "scipy>=1.4.1" ,
48+ "setuptools" ,
49+ "swat_em>=0.6.3" ,
4350 "xlrd>=1.2.0" ,
4451 "xlwt>=1.3.0" ,
45- "deap>=1.3.1" ,
46- "SciDataTool>=2.0.6" ,
47- "pyvista>=0.25.3" ,
48- "meshio>=4.0.15" ,
49- "h5py>=3.2.1" ,
50- "nbformat" ,
51- "nbconvert" ,
52- "quadpy" ,
53- "ezdxf>=0.14.2" ,
54- "pytest-qt>=3.3.0" ,
55- "pyuff>=1.25" ,
52+ ]
53+ # Pyleecan optional dependancies
54+ full_require = [
55+ 'deap>=1.3.1' ,
56+ 'smoot>=0.1.0' ,
57+ 'gmsh-sdk>=4.6.0' ,
5658]
5759
60+ # Pyleecan Test dependancies
5861tests_require = [
5962 "ddt>=1.3.1" ,
60- "pytest>=5.4.1" ,
61- "pytest-qt>=3.3.0" ,
63+ "hypothesis" ,
6264 "mock>=4.0.2" ,
63- "nbformat" ,
6465 "nbconvert" ,
66+ "nbformat" ,
67+ "pytest>=5.4.1" ,
68+ "pytest-qt>=3.3.0" ,
6569]
6670
6771setuptools .setup (
9195 python_requires = python_requires ,
9296 install_requires = install_requires ,
9397 extras_require = {
94- "test" : tests_require
98+ "test" : tests_require ,
99+ "full" : full_require
95100 }, # Enables to install the test dependancies using pip install pyleecan[test]
96101)
You can’t perform that action at this time.
0 commit comments