Skip to content

Commit

Permalink
Merge pull request #210 from emiliom/rel0.8.7fix
Browse files Browse the repository at this point in the history
Version 0.8.8 release, very minor patch to 0.8.7
  • Loading branch information
emiliom authored Sep 2, 2021
2 parents 0ca4434 + 5d7ea48 commit 3cbbedc
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
10 changes: 9 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
Changelog
---------

**0.8.7 (released 2020-09-01)**
**0.8.8 (released 2021-09-02)**

Patch release. Added `python-dateutil` dependency back to `requirements.txt`.
It's only used in the LCRA reader, which seems to be broken. But adding it
just in case and to enable conda-forge package build tests to complete cleanly.
It's otherwise identical to 0.8.7. 0.8.7 PyPI package will be "yanked".


**0.8.7 (released 2021-09-01, but "yanked" from PyPI 2021-09-02)**

- This release focused primarily on two improvements:
1. Added new NOAA GOES reader for GOES DSC/DCP data ingest. This new reader
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.7
0.8.8
8 changes: 4 additions & 4 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ CUAHSI HIS Central
.. automodule:: ulmo.cuahsi.his_central
:members: get_services

CUAHSI WaterOneFlow
^^^^^^^^^^^^^^^^^^^
CUAHSI WaterOneFlow (WOF)
^^^^^^^^^^^^^^^^^^^^^^^^^
.. automodule:: ulmo.cuahsi.wof
:members: get_sites, get_site_info, get_values, get_variable_info

Expand Down Expand Up @@ -114,7 +114,7 @@ Texas Weather Connection Daily Keetch-Byram Drought Index (KBDI)
:members: get_data


US Army Corps of Engineers - Tulsa District Water Control
---------------------------------------------------------
US Army Corps of Engineers (USACE) - Tulsa District Water Control
-----------------------------------------------------------------
.. automodule:: ulmo.usace.swtwc
:members: get_stations, get_station_data
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
python-dateutil
numpydoc
sphinx
pip
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ isodate
lxml
numpy
pandas
python-dateutil
requests
suds-jurko
2 changes: 1 addition & 1 deletion ulmo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from __future__ import (absolute_import, division, print_function)

# ulmo version PEP-0440
__version__ = '0.8.7'
__version__ = '0.8.8'

from . import cdec
from . import cpc
Expand Down
2 changes: 0 additions & 2 deletions ulmo/cuahsi/his_central/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""
`CUAHSI HIS Central`_ catalog web services
.. _CUAHSI HIS Central: https://hiscentral.cuahsi.org/
"""
from .core import get_services

0 comments on commit 3cbbedc

Please sign in to comment.