Skip to content

Commit 3cbbedc

Browse files
authored
Merge pull request #210 from emiliom/rel0.8.7fix
Version 0.8.8 release, very minor patch to 0.8.7
2 parents 0ca4434 + 5d7ea48 commit 3cbbedc

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

CHANGES

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
Changelog
22
---------
33

4-
**0.8.7 (released 2020-09-01)**
4+
**0.8.8 (released 2021-09-02)**
5+
6+
Patch release. Added `python-dateutil` dependency back to `requirements.txt`.
7+
It's only used in the LCRA reader, which seems to be broken. But adding it
8+
just in case and to enable conda-forge package build tests to complete cleanly.
9+
It's otherwise identical to 0.8.7. 0.8.7 PyPI package will be "yanked".
10+
11+
12+
**0.8.7 (released 2021-09-01, but "yanked" from PyPI 2021-09-02)**
513

614
- This release focused primarily on two improvements:
715
1. Added new NOAA GOES reader for GOES DSC/DCP data ingest. This new reader

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.7
1+
0.8.8

docs/api.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ CUAHSI HIS Central
3737
.. automodule:: ulmo.cuahsi.his_central
3838
:members: get_services
3939

40-
CUAHSI WaterOneFlow
41-
^^^^^^^^^^^^^^^^^^^
40+
CUAHSI WaterOneFlow (WOF)
41+
^^^^^^^^^^^^^^^^^^^^^^^^^
4242
.. automodule:: ulmo.cuahsi.wof
4343
:members: get_sites, get_site_info, get_values, get_variable_info
4444

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

116116

117-
US Army Corps of Engineers - Tulsa District Water Control
118-
---------------------------------------------------------
117+
US Army Corps of Engineers (USACE) - Tulsa District Water Control
118+
-----------------------------------------------------------------
119119
.. automodule:: ulmo.usace.swtwc
120120
:members: get_stations, get_station_data

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
python-dateutil
21
numpydoc
32
sphinx
43
pip

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ isodate
66
lxml
77
numpy
88
pandas
9+
python-dateutil
910
requests
1011
suds-jurko

ulmo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from __future__ import (absolute_import, division, print_function)
88

99
# ulmo version PEP-0440
10-
__version__ = '0.8.7'
10+
__version__ = '0.8.8'
1111

1212
from . import cdec
1313
from . import cpc
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
"""
22
`CUAHSI HIS Central`_ catalog web services
3-
4-
.. _CUAHSI HIS Central: https://hiscentral.cuahsi.org/
53
"""
64
from .core import get_services

0 commit comments

Comments
 (0)