Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 84947ca

Browse files
committed
REL: 2.7.0rc2
This is the second release candidate for h5py 2.7 - Dropped support for python 3.2. - Added support for `pathlib`. - Improved auto-complete in IPython/jupyter for py3k. - Added low-level support for Direct Chunk Write and File Image Operations. - Support for reading non-standard float types. - Improved support for compound data types. - Many bug fixes. Identical to rc1, except with the version in setup.py correctly bumped.
1 parent 5186353 commit 84947ca

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""
44
This is the main setup script for h5py (http://www.h5py.org).
5-
5+
66
Most of the functionality is provided in two separate modules:
77
setup_configure, which manages compile-time/Cython-time build options
88
for h5py, and setup_build, which handles the actual compilation process.
@@ -22,7 +22,7 @@
2222
import setup_build, setup_configure
2323

2424

25-
VERSION = '2.6.0'
25+
VERSION = '2.7.0rc2'
2626

2727
NUMPY_DEP = 'numpy>=1.7'
2828

@@ -48,7 +48,7 @@ class test(Command):
4848

4949
"""
5050
Custom Distutils command to run the h5py test suite.
51-
51+
5252
This command will invoke build/build_ext if the project has not
5353
already been built. It then patches in the build directory to
5454
sys.path and runs the test suite directly.
@@ -78,7 +78,7 @@ def run(self):
7878

7979
buildobj = self.distribution.get_command_obj('build')
8080
buildobj.run()
81-
81+
8282
oldpath = sys.path
8383
try:
8484
sys.path = [op.abspath(buildobj.build_lib)] + oldpath
@@ -88,8 +88,8 @@ def run(self):
8888
sys.exit(1)
8989
finally:
9090
sys.path = oldpath
91-
92-
91+
92+
9393
CMDCLASS = {'build_ext': setup_build.h5py_build_ext,
9494
'configure': setup_configure.configure,
9595
'test': test, }

0 commit comments

Comments
 (0)