Skip to content

Commit 212405d

Browse files
committed
don't print df in fileio.read_grids_csv
1 parent 33a787b commit 212405d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cactice/fileio.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ def read_grids_csv(
7575
# load the CSV into a data frame
7676
# TODO: determine whether to read headers or not based on params
7777
df = pd.read_csv(path, sep=',')
78-
print(df)
7978

8079
# if there's only 1 grid and no specified name column, create it
8180
if name_header not in df: df[name_header] = 1

setup.py

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

88
setuptools.setup(
99
name='cactice',
10-
version='0.0.6',
10+
version='0.0.7',
1111
description='computing agricultural crop lattices',
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)