diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f3226d0..92e656b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,10 @@ Change log #. `#96 `_: regression: unknown file type shall trigger NoSupportingPluginFound +**updated** + +#. extra dependencies uses 0.6.0 based plugins + 0.6.2 - 7.10.2020 -------------------------------------------------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 9c84362..a2fc48f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ project = 'pyexcel-io' copyright = '2015-2020 Onni Software Ltd.' author = 'chfw' # The short X.Y version -version = '0.6.2' +version = '0.6.3' # The full version, including alpha/beta/rc tags release = '0.6.3' diff --git a/docs/source/index.rst b/docs/source/index.rst index 4b66b2c..95be968 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -10,7 +10,6 @@ :Source code: http://github.com/pyexcel/pyexcel-io.git :Issues: http://github.com/pyexcel/pyexcel-io/issues :License: New BSD License -:Development: |release| :Released: |version| :Generated: |today| diff --git a/setup.py b/setup.py index 6c9261b..b5e4bea 100644 --- a/setup.py +++ b/setup.py @@ -79,9 +79,9 @@ SETUP_COMMANDS = {} PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"]) EXTRAS_REQUIRE = { - "xls": ['pyexcel-xls>=0.5.0'], - "xlsx": ['pyexcel-xlsx>=0.5.0'], - "ods": ['pyexcel-ods3>=0.5.0'], + "xls": ['pyexcel-xls>=0.6.0'], + "xlsx": ['pyexcel-xlsx>=0.6.0'], + "ods": ['pyexcel-ods3>=0.6.0'], } # You do not need to read beyond this line PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)