Skip to content

Commit

Permalink
Rename pyDOE2 in pyDOE3
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Oct 24, 2023
1 parent f8f64e8 commit 70e606c
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
16 changes: 8 additions & 8 deletions pyDOE2/__init__.py → pyDOE3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
File renamed without changes.
4 changes: 2 additions & 2 deletions pyDOE2/doe_box_behnken.py → pyDOE3/doe_box_behnken.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down
8 changes: 4 additions & 4 deletions pyDOE2/doe_composite.py → pyDOE3/doe_composite.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 70e606c

Please sign in to comment.