From 7f80b0f3064dbfb944cdb4da16d7b4563641ab37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Fri, 17 Jun 2022 10:33:26 +0200 Subject: [PATCH] fixed deployment issue for 0.9.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- CHANGELOG.md | 4 ++++ planetmint/version.py | 2 +- setup.py | 47 ++++++++++++++++++++++++++++++++++++++----- 3 files changed, 47 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d94edc..2c8870c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,10 @@ For reference, the possible headings are: * **Known Issues** * **Notes** +## [0.9.7] - 2022-06-17 + +### Feature Update +Deep Zenroom integration ## [0.9.6] - 2022-06-08 diff --git a/planetmint/version.py b/planetmint/version.py index fa3fe9e..8c2db61 100644 --- a/planetmint/version.py +++ b/planetmint/version.py @@ -3,7 +3,7 @@ # SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) # Code is Apache-2.0 and docs are CC-BY-4.0 -__version__ = '0.9.6' +__version__ = '0.9.7' __short_version__ = '0.9' # Supported Tendermint versions diff --git a/setup.py b/setup.py index a490e66..9e16fcf 100644 --- a/setup.py +++ b/setup.py @@ -43,11 +43,48 @@ def check_setuptools_features(): import pathlib import pkg_resources -with pathlib.Path("docs/root/requirements.txt").open() as requirements_txt: - docs_require = [ - str(requirement) - for requirement in pkg_resources.parse_requirements(requirements_txt) - ] +docs_require = [ + "aafigure==0.6", + "alabaster==0.7.12", + "Babel==2.10.1", + "certifi==2021.10.8", + "charset-normalizer==2.0.12", + "commonmark==0.9.1", + "docutils==0.17.1", + "idna", + "imagesize==1.3.0", + "importlib-metadata==4.11.3", + "Jinja2==3.0.0", + "markdown-it-py==2.1.0", + "MarkupSafe==2.1.1", + "mdit-py-plugins==0.3.0", + "mdurl==0.1.1", + "myst-parser==0.17.2", + "packaging==21.3", + "pockets==0.9.1", + "Pygments==2.12.0", + "pyparsing==3.0.8", + "pytz==2022.1", + "PyYAML>=5.4.0", + "requests>=2.25i.1", + "six==1.16.0", + "snowballstemmer==2.2.0", + "Sphinx==4.5.0", + "sphinx-rtd-theme==1.0.0", + "sphinxcontrib-applehelp==1.0.2", + "sphinxcontrib-devhelp==1.0.2", + "sphinxcontrib-htmlhelp==2.0.0", + "sphinxcontrib-httpdomain==1.8.0", + "sphinxcontrib-jsmath==1.0.1", + "sphinxcontrib-napoleon==0.7", + "sphinxcontrib-qthelp==1.0.3", + "sphinxcontrib-serializinghtml==1.1.5", + "urllib3==1.26.9", + "wget==3.2", + "zipp==3.8.0", + "nest-asyncio==1.5.5", + "sphinx-press-theme==0.8.0", +] check_setuptools_features()