Skip to content

Commit

Permalink
Remove debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanVanVugt committed Jun 1, 2019
1 parent bc4f750 commit 2e69f33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion h5pickle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ def __new__(cls, *args, **kwargs):
"""
skip_cache = kwargs.pop('skip_cache', False)
hsh = arghash(*args, **kwargs)
print(hsh, args, kwargs)
if skip_cache or hsh not in cache:
self = object.__new__(cls)
h5py.File.__init__(self, *args, **kwargs)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
setup(
name = 'h5pickle',
packages = ['h5pickle'], # this must be the same as the name above
version = '0.4',
version = '0.4.1',
description = 'Wrap h5py objects to allow pickling',
author = 'Daan van Vugt',
author_email = 'daanvanvugt@gmail.com',
url = 'https://github.com/exteris/h5pickle', # use the URL to the github repo
download_url = 'https://github.com/exteris/h5pickle/archive/0.4.tar.gz', # I'll explain this in a second
download_url = 'https://github.com/exteris/h5pickle/archive/0.4.1.tar.gz', # I'll explain this in a second
keywords = ['h5py', 'hdf5', 'pickle', 'dask', 'python'], # arbitrary keywords
install_requires = [
'h5py',
Expand Down

0 comments on commit 2e69f33

Please sign in to comment.