-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change version number consistently Update documentation Add release notes to documentation
- Loading branch information
Maximilian Schmidt
committed
Apr 18, 2018
1 parent
d5efe80
commit ffa30d8
Showing
5 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
from .wrapper import load | ||
|
||
|
||
__version__ = '1.0.0' | ||
__version__ = '1.1.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,17 +3,17 @@ | |
|
||
setup( | ||
name='h5py_wrapper', | ||
version='1.0.0', | ||
version='1.1.0', | ||
author='Maximilian Schmidt, Jakob Jordan', | ||
author_email='[email protected]', | ||
description=('A wrapper to conveniently store nested Python dictionaries in hdf5 files.'), | ||
license='GPL2', | ||
keywords='hdf5 h5py', | ||
url='https://github.com/INM-6/h5py_wrapper', | ||
packages=['h5py_wrapper', 'tests'], | ||
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', | ||
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*, !=3.4.*, <4', | ||
scripts=['convert_h5file'], | ||
setup_requires=['pytest-runner'], | ||
install_requires=['h5py', 'pytest-runner'], | ||
tests_require=['pytest'], | ||
long_description=open('README.rst').read(), | ||
classifiers=[ | ||
|
@@ -23,7 +23,6 @@ | |
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Utilities', | ||
|