Skip to content

Commit 28d82eb

Browse files
committed
update to v0.7.5
1 parent 72d013d commit 28d82eb

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

doc/sphinx/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# -- Project information -----------------------------------------------------
1919

2020
project = u'pyStoNED'
21-
copyright = u'2020-2024, The pyStoNED authors'
21+
copyright = u'2020-2025, The pyStoNED authors'
2222
author = u'Sheng Dai, Yu-Hsueh Fang, Chia-Yen Lee, Timo Kuosmanen'
2323

2424
# The version info for the project you're documenting, acts as replacement for
@@ -28,7 +28,7 @@
2828
# The short X.Y version.
2929
version = '0.7'
3030
# The full version, including alpha/beta/rc tags.
31-
release = '0.7.4'
31+
release = '0.7.5'
3232

3333
# -- General configuration ---------------------------------------------------
3434

pystoned/CNLSDDF.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self, y, x, b=None, gy=[1], gx=[1], gb=None, fun=FUN_PROD):
4949
if type(self.b) != type(None):
5050
self.__model__.L = Set(initialize=range(len(self.b[0])))
5151
self.__model__.delta = Var(
52-
self.__model__.I, self.__model__.L, doc='delta')
52+
self.__model__.I, self.__model__.L, bounds=(0.0, None), doc='delta')
5353

5454
# Setup the objective function and constraints
5555
self.__model__.objective = Objective(rule=self._CNLS__objective_rule(),

pystoned/CQERDDF.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, y, x, b=None, gy=[1], gx=[1], gb=None, fun=FUN_PROD, tau=0.5)
5252
if type(self.b) != type(None):
5353
self.__model__.L = Set(initialize=range(len(self.b[0])))
5454
self.__model__.delta = Var(
55-
self.__model__.I, self.__model__.L, doc='delta')
55+
self.__model__.I, self.__model__.L, bounds=(0.0, None), doc='delta')
5656

5757
self.__model__.objective = Objective(rule=self._CQR__objective_rule(),
5858
sense=minimize,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup_args = dict(
77
name='pystoned',
8-
version='0.7.4',
8+
version='0.7.5',
99
description='A Python Package for Convex Regression and Frontier Estimation',
1010
long_description_content_type="text/markdown",
1111
long_description=README,

0 commit comments

Comments
 (0)