Skip to content

Commit

Permalink
bump version to 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Sep 28, 2023
1 parent 0f10aa1 commit f1cf192
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
6 changes: 3 additions & 3 deletions h5pyd/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import sys
import numpy

version = "0.15.1"
version = "0.16.0"

hdf5_version = "REST"

Expand All @@ -28,8 +28,8 @@
else ("",)
)

api_version_tuple = (0, 15, 1)
api_version = "0.15.1"
api_version_tuple = (0, 16, 0)
api_version = "0.16.0"

__doc__ = """\
This is h5pyd **%s**
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setup(
name="h5pyd",
version="0.15.1",
version="0.16.0",
description="h5py compatible client lib for HDF REST API",
long_description=long_description,
url="http://github.com/HDFGroup/h5pyd",
Expand Down
13 changes: 5 additions & 8 deletions test/apps/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_user1(self):
@property
def test_user2(self):
user2 = {}
if "TEST12_USERNAME" in os.environ:
if "TEST2_USERNAME" in os.environ:
user2["name"] = os.environ["TEST2_USERNAME"]
else:
user2["name"] = "test_user2"
Expand Down Expand Up @@ -204,13 +204,10 @@ def getFileName(self, basename):
if "H5PYD_TEST_FOLDER" in os.environ:
domain = os.environ["H5PYD_TEST_FOLDER"]
else:
domain = "h5pyd_test.hdfgroup.org"
if domain.find('/') > -1:
# Use path-style domain naming
filename = op.join(domain, basename)
filename += ".h5"
else:
filename = basename + "." + domain
domain = "/"
# Use path-style domain naming
filename = op.join(domain, basename)
filename += ".h5"
return filename


Expand Down

0 comments on commit f1cf192

Please sign in to comment.