From 66d02aa3aac1b2f845d54d0ff61d2222de56127a Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Wed, 9 Oct 2024 09:31:40 +0200 Subject: [PATCH] Bump version 0.2.1 --- README.md | 9 --------- otbenchmark/__init__.py | 3 ++- pyproject.toml | 5 +---- setup.py | 7 ++----- 4 files changed, 5 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 9ed5407..5f1a549 100644 --- a/README.md +++ b/README.md @@ -45,12 +45,3 @@ pip install otbenchmark The documentation is available here: https://openturns.github.io/otbenchmark/master/ -## TODO-List - -* The FORM algorithm does not perform correctly on: RP75, RP111 -and Four-branch serial system. -An explanation would be required for this. - -* The computeCDF() method does not perform correctly on many problems. -An explanation would be required for this. - diff --git a/otbenchmark/__init__.py b/otbenchmark/__init__.py index 414579d..fd0f2dd 100644 --- a/otbenchmark/__init__.py +++ b/otbenchmark/__init__.py @@ -125,4 +125,5 @@ "SensitivityDistribution", "JanonSensitivityAlgorithm", ] -__version__ = "0.2" + +__version__ = "0.2.1" diff --git a/pyproject.toml b/pyproject.toml index 8c53f70..468dacf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "otbenchmark" -version = "0.2" +version = "0.2.1" dependencies = [ "openturns>=1.23", "matplotlib>=3", @@ -25,10 +25,7 @@ classifiers = [ "Environment :: Console", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", "Intended Audience :: Science/Research", - "Intended Audience :: Developers", - "Natural Language :: French", "Programming Language :: Python :: 3", - "Topic :: Software Development", "Topic :: Scientific/Engineering", ] diff --git a/setup.py b/setup.py index 42b760e..b0884c6 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ ----- :: - python setup.py install + pip install . """ from setuptools import setup, find_packages @@ -20,7 +20,7 @@ setup( name="otbenchmark", keywords=["OpenTURNS", "benchmark"], - version="0.2", + version="0.2.1", packages=find_packages(), install_requires=["numpy<2", "matplotlib", "openturns>=1.23"], description="Benchmark problems for OpenTURNS", @@ -31,10 +31,7 @@ "Environment :: Console", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", "Intended Audience :: Science/Research", - "Intended Audience :: Developers", - "Natural Language :: French", "Programming Language :: Python :: 3", - "Topic :: Software Development", "Topic :: Scientific/Engineering", ], license="LGPL",