Skip to content

Commit

Permalink
Use multiurl 0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Feb 28, 2022
1 parent 70ac376 commit c515d79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ecmwf/opendata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

from .client import Client

__version__ = "0.1.0"
__version__ = "0.1.1"

__all__ = ["Client"]
4 changes: 4 additions & 0 deletions ecmwf/opendata/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,17 @@ def __init__(
beta=True,
preserve_request_order=False,
infer_stream_keyword=True,
debug=False,
):
self._url = None
self.source = source
self.beta = beta
self.preserve_request_order = preserve_request_order
self.infer_stream_keyword = infer_stream_keyword

if debug:
logging.basicConfig(level=logging.DEBUG)

@property
def url(self):

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def read(fname):
url="https://github.com/ecmwf/ecmwf-opendata",
packages=setuptools.find_namespace_packages(include=["ecmwf.*"]),
include_package_data=True,
install_requires=["multiurl>=0.0.13"],
install_requires=["multiurl>=0.0.14"],
zip_safe=True,
keywords="tool",
classifiers=[
Expand Down

0 comments on commit c515d79

Please sign in to comment.