From d0cd8252beeb22748b70c0f4b90d6c1e755ded60 Mon Sep 17 00:00:00 2001 From: Markus Holzer <markus.holzer@fau.de> Date: Tue, 8 Feb 2022 15:11:55 +0100 Subject: [PATCH] Update Ubuntu pipeline to last stable SymPy version 1.6.1 --- .gitlab-ci.yml | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6e5072b7..94b3e3866 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,8 +107,9 @@ ubuntu: - $ENABLE_NIGHTLY_BUILDS image: i10git.cs.fau.de:5005/pycodegen/pycodegen/ubuntu before_script: - # - apt-get -y remove python3-sympy + - apt-get -y remove python3-sympy - ln -s /usr/include/locale.h /usr/include/xlocale.h + - pip3 install `grep -Eo 'sympy[>=]+[0-9\.]+' setup.py | sed 's/>/=/g'` # - pip3 install `grep -Eo 'sympy[>=]+[0-9\.]+' setup.py | sed 's/>/=/g'` script: - export NUM_CORES=$(nproc --all) diff --git a/setup.py b/setup.py index 5e2cfc866..79b217320 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ setuptools.setup(name='pystencils', author_email='cs10-codegen@fau.de', url='https://i10git.cs.fau.de/pycodegen/pystencils/', packages=['pystencils'] + ['pystencils.' + s for s in setuptools.find_packages('pystencils')], - install_requires=['sympy>=1.5.1,<=1.9', 'numpy>=1.8.0', 'appdirs', 'joblib'], + install_requires=['sympy>=1.6,<=1.9', 'numpy>=1.8.0', 'appdirs', 'joblib'], package_data={'pystencils': ['include/*.h', 'backends/cuda_known_functions.txt', 'backends/opencl1.1_known_functions.txt', -- GitLab