Skip to content
Snippets Groups Projects
Commit e684c008 authored by Pierre Augier's avatar Pierre Augier
Browse files

FLUIDSIM_WITHOUT_PYFFTW for occigen cluster

parent 4409494f
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@
- pip install -U pip==18.0 setuptools wheel six colorlog
- pip install -U tox-pipenv coverage fluiddevops
- pip install -U numpy cython mako mpi4py fluidpythran # To be removed when pip==10 is out and this step can be bootstrapped
- pipenv install pip==18.0 # tmp: https://github.com/pypa/pipenv/issues/2924
before_script:
- |
......
......@@ -20,7 +20,7 @@
"""
__version__ = "0.2.2.post0"
__version__ = "0.2.3"
try:
from pyfiglet import figlet_format
......@@ -36,4 +36,4 @@
|_| |_|\__,_|_|\__,_|___/_|_| |_| |_|
"""
__about__ = __about__.rstrip() + f"\n\n{22 * ' '} v. {__version__}\n"
__about__ = __about__.rstrip() + f"\n\n{28 * ' '} v. {__version__}\n"
......@@ -127,7 +127,10 @@
]
if FFTW3:
install_requires += ["pyfftw >= 0.10.4", "fluidfft >= 0.2.6"]
if not os.environ.get("FLUIDSIM_WITHOUT_PYFFTW", False):
install_requires.append("pyfftw >= 0.10.4")
install_requires.append("fluidfft >= 0.2.6")
def modification_date(filename):
......
......@@ -20,6 +20,7 @@
whitelist_externals = make
usedevelop = True
deps =
pip==18.0 # tmp: https://github.com/pypa/pipenv/issues/2924
coverage
fluidpythran
mako
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment