Skip to content

Commit

Permalink
Merge pull request #56 from mullenkamp/dev
Browse files Browse the repository at this point in the history
bug fix
  • Loading branch information
mullenkamp authored Jul 12, 2022
2 parents 4e97e48 + 5b62cdd commit fbbccaa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "hilltop-py" %}
{% set version = "2.0.3" %}
{% set version = "2.0.4" %}
# {% set sha256 = "72a156e328247c91cb7f5440ffa98069c0090892f8d9d07fd57e36c0611a0403" %}

# sha256 is the prefered checksum -- you can get it for a file with:
Expand Down
2 changes: 1 addition & 1 deletion hilltoppy/web_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def get_data(base_url, hts, site, measurement, from_date=None, to_date=None, agg
m_dict1 = orjson.loads(Measurement(**m_dict).json(exclude_none=True))
m_dict1['ItemNum'] = int(m.attrib['ItemNumber'])

ds_dict1.update(m_dict1)
ds_dict1.update(m_dict1)

## Parse the ts data
item_num = str(ds_dict1['ItemNum'])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name = 'hilltop-py'
main_package = 'hilltoppy'
# datasets = 'datasets'
version = '2.0.3'
version = '2.0.4'
descrip = 'Functions to access Hilltop data'

# The below code is for readthedocs. To have sphinx/readthedocs interact with
Expand Down

0 comments on commit fbbccaa

Please sign in to comment.