Skip to content

Commit 9a19dcd

Browse files
committed
[VI] Updating versions before release
1 parent 8dfc180 commit 9a19dcd

File tree

4 files changed

+53
-30
lines changed

4 files changed

+53
-30
lines changed

pyleecan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
else:
1212
USER_DIR = os.environ["HOME"] + "/.local/share/" + PACKAGE_NAME
1313

14-
__version__ = "1.3.8"
14+
__version__ = "1.3.9"
1515

1616
init_default_log()

requirements-full.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

requirements.txt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
11
cloudpickle>=1.3.0
2-
ddt>=1.3.1
3-
deap>=1.3.1
42
ezdxf==0.14.2
53
h5py>=3.2.1
64
matplotlib>=3.3.2
75
meshio>=4.0.15
8-
mock>=4.0.2
9-
nbconvert
10-
nbformat
116
numpy>1.19.5
127
pandas>=1.0.3
138
pyfemm>=0.1.1;platform_system=="Windows"
149
PySide2>=5.15.2
15-
pytest>=5.4.1
16-
pytest-qt>=3.3.0
1710
pyuff>=1.25
1811
pyvista>=0.25.3
1912
quadpy
20-
SciDataTool>=2.0.6
13+
SciDataTool>=2.3.11
2114
scipy>=1.4.1
2215
setuptools
2316
swat_em>=0.6.3
2417
xlrd>=1.2.0
2518
xlwt>=1.3.0
26-
hypothesis
27-
smoot

setup.py

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,47 +21,51 @@
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

2727
with open("README.md", "r") as fh:
2828
long_description = fh.read()
2929

3030
python_requires = ">= 3.6"
3131

32-
# Pyleecan dependancies
32+
# Pyleecan main dependancies
3333
install_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
5861
tests_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

6771
setuptools.setup(
@@ -91,6 +95,7 @@
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
)

0 commit comments

Comments
 (0)