From 9e630e75d35cc88f41a2f8a2d25faca97707bbd8 Mon Sep 17 00:00:00 2001 From: acrovato <a.crovato@uliege.be> Date: Fri, 4 Oct 2024 13:59:27 +0200 Subject: [PATCH] update openmdao version --- .gitlab-ci.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 239526d..d4a3818 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,7 +33,7 @@ default: - python3 -m pip install . - cd .. # Install OpenMDAO - - python3 -m pip install openmdao + - python3 -m pip install openmdao^<3.35 .global_tag: &global_tag_def tags: diff --git a/setup.py b/setup.py index af86c77..4763677 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,6 @@ setup( url='https://gitlab.uliege.be/am-dept/omflut', license='Apache 2.0', packages=find_packages(include=['omflut*']), - install_requires=['numpy>=1.22', 'scipy>=1.8', 'openmdao>=3.19,<3.35'], + install_requires=['numpy>=1.22', 'scipy>=1.8', 'openmdao>=3.19'], classifiers=['Operating System :: OS Independent', 'Programming Language :: Python'], ) -- GitLab