Skip to content

Commit b75d7a9

Browse files
committed
fix for period average data writes
check for non-existent directory on file opening
1 parent fe53baf commit b75d7a9

13 files changed

Lines changed: 330 additions & 205 deletions

File tree

conda.recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ requirements:
2323
- pandas >=0.23
2424
run:
2525
- python >=3.7
26-
- numpy >=1.11
26+
- numpy >=1.16
2727
- pandas >=0.23
2828

2929
test:

docs/doctrees/environment.pickle

0 Bytes
Binary file not shown.

docs/doctrees/installation.doctree

224 Bytes
Binary file not shown.

docs/html/_sources/installation.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ To install pyhecdss, run this command in your terminal:
1313
.. code-block:: console
1414
1515
$ conda install -c cadwr-dms pyhecdss
16+
$ conda install -c anaconda libgfortran # May be needed on linux if libgfortran is not installed along with gcc
1617
1718
This is the preferred method to install pyhecdss, as it will always install the most recent stable release.
1819

docs/html/installation.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ <h1>Installation<a class="headerlink" href="#installation" title="Permalink to t
3838
<h2>Stable release<a class="headerlink" href="#stable-release" title="Permalink to this headline"></a></h2>
3939
<p>To install pyhecdss, run this command in your terminal:</p>
4040
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> conda install -c cadwr-dms pyhecdss
41+
<span class="gp">$</span> conda install -c anaconda libgfortran <span class="c1"># May be needed on linux if libgfortran is not installed along with gcc</span>
4142
</pre></div>
4243
</div>
4344
<p>This is the preferred method to install pyhecdss, as it will always install the most recent stable release.</p>

docs/html/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docsrc/installation.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ To install pyhecdss, run this command in your terminal:
1313
.. code-block:: console
1414
1515
$ conda install -c cadwr-dms pyhecdss
16+
$ conda install -c anaconda libgfortran # May be needed on linux if libgfortran is not installed along with gcc
1617
1718
This is the preferred method to install pyhecdss, as it will always install the most recent stable release.
1819

pyhecdss/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__author__ = """Nicky Sandhu"""
22
__email__ = 'psandhu@water.ca.gov'
3-
__version__ = "0.2.5"
3+
__version__ = "0.2.6"
44
from .pyhecdss import *

0 commit comments

Comments
 (0)