Skip to content

Commit

Permalink
[VI] Updating versions before release
Browse files Browse the repository at this point in the history
  • Loading branch information
BonneelP committed May 3, 2022
1 parent 8dfc180 commit 9a19dcd
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 30 deletions.
2 changes: 1 addition & 1 deletion pyleecan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
else:
USER_DIR = os.environ["HOME"] + "/.local/share/" + PACKAGE_NAME

__version__ = "1.3.8"
__version__ = "1.3.9"

init_default_log()
27 changes: 27 additions & 0 deletions requirements-full.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
cloudpickle>=1.3.0
ezdxf==0.14.2
h5py>=3.2.1
matplotlib>=3.3.2
meshio>=4.0.15
numpy>1.19.5
pandas>=1.0.3
pyfemm>=0.1.1;platform_system=="Windows"
PySide2>=5.15.2
pyuff>=1.25
pyvista>=0.25.3
quadpy
SciDataTool>=2.3.11
scipy>=1.4.1
setuptools
swat_em>=0.6.3
xlrd>=1.2.0
xlwt>=1.3.0
ddt>=1.3.1
deap>=1.3.1
hypothesis
mock>=4.0.2
nbconvert
nbformat
pytest>=5.4.1
pytest-qt>=3.3.0
smoot>=0.1.0
11 changes: 1 addition & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,18 @@
cloudpickle>=1.3.0
ddt>=1.3.1
deap>=1.3.1
ezdxf==0.14.2
h5py>=3.2.1
matplotlib>=3.3.2
meshio>=4.0.15
mock>=4.0.2
nbconvert
nbformat
numpy>1.19.5
pandas>=1.0.3
pyfemm>=0.1.1;platform_system=="Windows"
PySide2>=5.15.2
pytest>=5.4.1
pytest-qt>=3.3.0
pyuff>=1.25
pyvista>=0.25.3
quadpy
SciDataTool>=2.0.6
SciDataTool>=2.3.11
scipy>=1.4.1
setuptools
swat_em>=0.6.3
xlrd>=1.2.0
xlwt>=1.3.0
hypothesis
smoot
43 changes: 24 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,47 +21,51 @@
# Release 1.1.0 : 1.1.0
# First post release of the release 1.1.0 : 1.1.0.post1

PYLEECAN_VERSION = "1.3.8"
PYLEECAN_VERSION = "1.3.9"


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

python_requires = ">= 3.6"

# Pyleecan dependancies
# Pyleecan main dependancies
install_requires = [
"setuptools",
"cloudpickle>=1.3.0",
"ezdxf==0.14.2",
"h5py>=3.2.1",
"matplotlib>=3.3.2",
"meshio>=4.0.15",
"numpy>1.19.5",
"pandas>=1.0.3",
'pyfemm>=0.1.1;platform_system=="Windows"',
"PySide2>=5.15.2",
"swat_em>=0.6.3",
"pyuff>=1.25",
"pyvista>=0.25.3",
"quadpy",
"SciDataTool>=2.3.11",
"scipy>=1.4.1",
"setuptools",
"swat_em>=0.6.3",
"xlrd>=1.2.0",
"xlwt>=1.3.0",
"deap>=1.3.1",
"SciDataTool>=2.0.6",
"pyvista>=0.25.3",
"meshio>=4.0.15",
"h5py>=3.2.1",
"nbformat",
"nbconvert",
"quadpy",
"ezdxf>=0.14.2",
"pytest-qt>=3.3.0",
"pyuff>=1.25",
]
# Pyleecan optional dependancies
full_require = [
'deap>=1.3.1',
'smoot>=0.1.0',
'gmsh-sdk>=4.6.0',
]

# Pyleecan Test dependancies
tests_require = [
"ddt>=1.3.1",
"pytest>=5.4.1",
"pytest-qt>=3.3.0",
"hypothesis",
"mock>=4.0.2",
"nbformat",
"nbconvert",
"nbformat",
"pytest>=5.4.1",
"pytest-qt>=3.3.0",
]

setuptools.setup(
Expand Down Expand Up @@ -91,6 +95,7 @@
python_requires=python_requires,
install_requires=install_requires,
extras_require={
"test": tests_require
"test": tests_require,
"full": full_require
}, # Enables to install the test dependancies using pip install pyleecan[test]
)

0 comments on commit 9a19dcd

Please sign in to comment.