diff --git a/doc/conf.py b/doc/conf.py index 5ca440b..29126d6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -50,7 +50,7 @@ # General information about the project. project = u'h5py_wrapper' -copyright = u'2016, Maximilian Schmidt, Jakob Jordan' +copyright = u'2018, Maximilian Schmidt, Jakob Jordan' author = u'Maximilian Schmidt, Jakob Jordan' # The version info for the project you're documenting, acts as replacement for diff --git a/doc/conversion.rst b/doc/conversion.rst index 81f6215..027cad5 100644 --- a/doc/conversion.rst +++ b/doc/conversion.rst @@ -5,7 +5,7 @@ Conversion from old release versions .. toctree:: :maxdepth: 2 -Release version 1.0.0 introduced some changes to the file format (see `Release notes +Release version 1.0.1 introduced some changes to the file format (see `Release notes `_). .. literalinclude:: ../convert_h5file diff --git a/doc/index.rst b/doc/index.rst index fb31821..33d9960 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -37,6 +37,14 @@ Conversion from old releases conversion +Release Notes +============= +.. toctree:: + :maxdepth: 2 + + release_notes + + Indices and tables ================== diff --git a/h5py_wrapper/__init__.py b/h5py_wrapper/__init__.py index 12a7ca9..f607248 100644 --- a/h5py_wrapper/__init__.py +++ b/h5py_wrapper/__init__.py @@ -22,4 +22,4 @@ from .wrapper import load -__version__ = '1.0.0' +__version__ = '1.1.0' diff --git a/setup.py b/setup.py index 33e2e23..0afee82 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='h5py_wrapper', - version='1.0.0', + version='1.1.0', author='Maximilian Schmidt, Jakob Jordan', author_email='max.schmidt@fz-juelich.de', description=('A wrapper to conveniently store nested Python dictionaries in hdf5 files.'), @@ -11,9 +11,9 @@ 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',