diff --git a/doc/conf.py b/doc/conf.py index d47af67..0a05aa7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,7 +56,7 @@ # The short X.Y version. version = '1' # The full version, including alpha/beta/rc tags. -release = pyDOE2.__version__ +release = pyDOE3.__version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyDOE2/__init__.py b/pyDOE3/__init__.py similarity index 69% rename from pyDOE2/__init__.py rename to pyDOE3/__init__.py index 38f0506..f9fce69 100644 --- a/pyDOE2/__init__.py +++ b/pyDOE3/__init__.py @@ -19,11 +19,11 @@ - Copyright (C) 2018 - Rickard Sjoegren and Daniel Svensson """ -from pyDOE2.doe_box_behnken import * -from pyDOE2.doe_composite import * -from pyDOE2.doe_factorial import * -from pyDOE2.doe_lhs import * -from pyDOE2.doe_fold import * -from pyDOE2.doe_plackett_burman import * -from pyDOE2.var_regression_matrix import * -from pyDOE2.doe_gsd import gsd +from pyDOE3.doe_box_behnken import * +from pyDOE3.doe_composite import * +from pyDOE3.doe_factorial import * +from pyDOE3.doe_lhs import * +from pyDOE3.doe_fold import * +from pyDOE3.doe_plackett_burman import * +from pyDOE3.var_regression_matrix import * +from pyDOE3.doe_gsd import gsd diff --git a/pyDOE2/build_regression_matrix.py b/pyDOE3/build_regression_matrix.py similarity index 100% rename from pyDOE2/build_regression_matrix.py rename to pyDOE3/build_regression_matrix.py diff --git a/pyDOE2/doe_box_behnken.py b/pyDOE3/doe_box_behnken.py similarity index 96% rename from pyDOE2/doe_box_behnken.py rename to pyDOE3/doe_box_behnken.py index 3b8f6a2..2938d0f 100644 --- a/pyDOE2/doe_box_behnken.py +++ b/pyDOE3/doe_box_behnken.py @@ -14,8 +14,8 @@ """ import numpy as np -from pyDOE2.doe_factorial import ff2n -from pyDOE2.doe_repeat_center import repeat_center +from pyDOE3.doe_factorial import ff2n +from pyDOE3.doe_repeat_center import repeat_center __all__ = ['bbdesign'] diff --git a/pyDOE2/doe_composite.py b/pyDOE3/doe_composite.py similarity index 97% rename from pyDOE2/doe_composite.py rename to pyDOE3/doe_composite.py index 038b6da..0bd833f 100644 --- a/pyDOE2/doe_composite.py +++ b/pyDOE3/doe_composite.py @@ -14,10 +14,10 @@ """ import numpy as np -from pyDOE2.doe_factorial import ff2n -from pyDOE2.doe_star import star -from pyDOE2.doe_union import union -from pyDOE2.doe_repeat_center import repeat_center +from pyDOE3.doe_factorial import ff2n +from pyDOE3.doe_star import star +from pyDOE3.doe_union import union +from pyDOE3.doe_repeat_center import repeat_center __all__ = ['ccdesign'] diff --git a/pyDOE2/doe_factorial.py b/pyDOE3/doe_factorial.py similarity index 100% rename from pyDOE2/doe_factorial.py rename to pyDOE3/doe_factorial.py diff --git a/pyDOE2/doe_fold.py b/pyDOE3/doe_fold.py similarity index 100% rename from pyDOE2/doe_fold.py rename to pyDOE3/doe_fold.py diff --git a/pyDOE2/doe_gsd.py b/pyDOE3/doe_gsd.py similarity index 100% rename from pyDOE2/doe_gsd.py rename to pyDOE3/doe_gsd.py diff --git a/pyDOE2/doe_lhs.py b/pyDOE3/doe_lhs.py similarity index 100% rename from pyDOE2/doe_lhs.py rename to pyDOE3/doe_lhs.py diff --git a/pyDOE2/doe_plackett_burman.py b/pyDOE3/doe_plackett_burman.py similarity index 100% rename from pyDOE2/doe_plackett_burman.py rename to pyDOE3/doe_plackett_burman.py diff --git a/pyDOE2/doe_repeat_center.py b/pyDOE3/doe_repeat_center.py similarity index 100% rename from pyDOE2/doe_repeat_center.py rename to pyDOE3/doe_repeat_center.py diff --git a/pyDOE2/doe_star.py b/pyDOE3/doe_star.py similarity index 100% rename from pyDOE2/doe_star.py rename to pyDOE3/doe_star.py diff --git a/pyDOE2/doe_union.py b/pyDOE3/doe_union.py similarity index 100% rename from pyDOE2/doe_union.py rename to pyDOE3/doe_union.py diff --git a/pyDOE2/var_regression_matrix.py b/pyDOE3/var_regression_matrix.py similarity index 100% rename from pyDOE2/var_regression_matrix.py rename to pyDOE3/var_regression_matrix.py