Skip to content

Commit 919aafa

Browse files
committed
minor fixes
1 parent 79a8ec2 commit 919aafa

File tree

3 files changed

+7
-21
lines changed

3 files changed

+7
-21
lines changed

meanderpy/meanderpy.ipynb

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -582,32 +582,19 @@
582582
},
583583
{
584584
"cell_type": "code",
585-
"execution_count": 197,
585+
"execution_count": 199,
586586
"metadata": {},
587-
"outputs": [
588-
{
589-
"data": {
590-
"text/plain": [
591-
"<module 'meanderpy' from '/Users/zoltan/Dropbox/Channels/meanderpy/meanderpy/meanderpy.py'>"
592-
]
593-
},
594-
"execution_count": 197,
595-
"metadata": {},
596-
"output_type": "execute_result"
597-
}
598-
],
587+
"outputs": [],
599588
"source": [
600-
"reload(mp)"
589+
"fig1,fig2,fig3 = chb_3d.plot_xsection(200, [[0.9,0.9,0], [0.5,0.25,0]], 10)"
601590
]
602591
},
603592
{
604593
"cell_type": "code",
605-
"execution_count": 196,
594+
"execution_count": null,
606595
"metadata": {},
607596
"outputs": [],
608-
"source": [
609-
"fig1,fig2,fig3 = chb_3d.plot_xsection(200, [[0.9,0.9,0], [0.5,0.25,0]], 10)"
610-
]
597+
"source": []
611598
}
612599
],
613600
"metadata": {

meanderpy/meanderpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def plot_xsection(self, xsec, colors, ve):
119119
ax3.set_aspect('equal', adjustable='box')
120120
ax3.set_title('basal erosional surface')
121121
ax3.tick_params(bottom=False,top=False,left=False,right=False,labelbottom=False,labelleft=False)
122-
return fig1,fig2,fig3
122+
return fig1, fig2, fig3
123123

124124
class ChannelBelt:
125125
"""class for ChannelBelt objects"""

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name="meanderpy",
9-
version="0.1.8",
9+
version="0.1.9",
1010
author="Zoltan Sylvester",
1111
author_email="zoltan.sylvester@beg.utexas.edu",
1212
description="meanderpy: a simple model of meandering",
@@ -18,7 +18,6 @@
1818
install_requires=['numpy','matplotlib',
1919
'scipy','numba','pillow','scikit-image','tqdm'],
2020
classifiers=[
21-
"Programming Language :: Python :: 2",
2221
"Programming Language :: Python :: 3",
2322
'Intended Audience :: Science/Research',
2423
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)