Skip to content

Commit 5f366bf

Browse files
committed
Muted print statement.
1 parent d917015 commit 5f366bf

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

interpolation/splines/eval_cubic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def get_grid(a,b,n,C):
1919
d = C.ndim
2020
s = "({},)".format(str.join(", ", [f"(a[{k}],b[{k}],n[{k}])" for k in range(d)]))
2121
txt = "def get_grid(a,b,n,C): return {}".format(s)
22-
print(txt)
2322
f = source_to_function(txt)
2423
return f
2524

interpolation/splines/eval_splines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def __eval_cubic(grid,C,points,extrap_mode):
206206
grid_types = ['nonuniform' if isinstance(tt, numba.types.Array) else 'uniform' for tt in grid.types]
207207
context = {'floor': floor, 'zeros': zeros, 'Cd': Ad, 'dCd': dAd}
208208

209-
print(f"We are going to extrapolate in {extrap_mode} mode.")
209+
# print(f"We are going to extrapolate in {extrap_mode} mode.")
210210
if extrap_mode == t_NEAREST:
211211
extrap_ = 'nearest'
212212
elif extrap_mode == t_CONSTANT:

setup.py

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

33
setup(
44
name='interpolation',
5-
version='2.1.0',
5+
version='2.1.1',
66
description='Interpolation in Python',
77
url='https://github.com/econforge/interpolation.py',
88
author='Chase Coleman, Spencer Lyon and Pablo Winant',

0 commit comments

Comments
 (0)