Skip to content

Commit

Permalink
Merge pull request #53 from mullenkamp/dev
Browse files Browse the repository at this point in the history
working new version
  • Loading branch information
mullenkamp authored Jun 29, 2022
2 parents d61b18f + 8d90a88 commit 332ea95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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.0" %}
{% set version = "2.0.1" %}
# {% 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/tests/test_web_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""
import pytest
import numpy as np
from hilltoppy.web_service import measurement_list, site_list, collection_list, get_data, wq_sample_parameter_list, site_info
from hilltoppy.web_service import measurement_list, site_list, collection_list, get_data, site_info

### Parameters

Expand Down
2 changes: 1 addition & 1 deletion hilltoppy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
except ImportError:
from ConfigParser import SafeConfigParser as ConfigParser
import orjson
from typing import List, Optional, Dict, Union, Literal
from typing import List
from pydantic import BaseModel, Field, HttpUrl, conint, confloat
from enum import Enum
import urllib
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.0'
version = '2.0.1'
descrip = 'Functions to access Hilltop data'

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

0 comments on commit 332ea95

Please sign in to comment.