From f31015f43ac16b0baf2f1766c9fe51cf649d9f4a Mon Sep 17 00:00:00 2001 From: Lorenzo Date: Sat, 13 Mar 2021 16:31:09 +0000 Subject: [PATCH] Release 0.4.1 (#562) --- README.md | 3 +-- pyproject.toml | 6 +++--- requirements.txt | 4 ++-- setup.py | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1a0b4452..d1460354 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,6 @@ To run a demo for hydrus using the sample API, just do the following: 1. Clone hydrus: ```bash git clone https://github.com/HTTP-APIs/hydrus -```bash cd hydrus ``` 2. Install a [*Python virtual environment*](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/) using: @@ -79,7 +78,7 @@ NOTE: there is an alternative way to install dependencies with `poetry`: pip3 install poetry poetry install ``` -This is mostly used to check dependencies conflicts among packages. +This is mostly used to check dependencies conflicts among packages and to release to `PyPi`. After installation is successful, to *run the server*: ```bash diff --git a/pyproject.toml b/pyproject.toml index 1a0616b6..893bb27c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hydrus" -version = "0.3.1" +version = "0.4.1" description = "Hydra Ecosystem Flagship Server. Deploy REST data for Web 3.0" authors = ["Hydra Ecosystem"] license = "MIT License" @@ -20,8 +20,8 @@ Flask-SocketIO = "~4.2.1" gevent = "~20.12.0" gevent-websocket = "~0.10.1" greenlet = "~0.4.17" -hydra_python_core = { git = "https://github.com/HTTP-APIs/hydra-python-core" } -hydra_openapi_parser = { git = "https://github.com/HTTP-APIs/hydra-openapi-parser", tag = "0.1.1" } +hydra_python_core = ">=0.2" +hydra_openapi_parser = ">=0.2" itsdangerous = "~1.1.0" Jinja2 = "~2.10.3" lifter = "~0.4.1" diff --git a/requirements.txt b/requirements.txt index 414bb88e..7f1a4f41 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,8 +11,8 @@ Flask-SocketIO==4.2.1 gevent==20.12.0 gevent-websocket==0.10.1 greenlet==0.4.17 -git+https://github.com/HTTP-APIs/hydra-python-core@master#egg=hydra_python_core -git+https://github.com/HTTP-APIs/hydra-openapi-parser@0.1.1#egg=hydra_openapi_parser +hydra_python_core +hydra_openapi_parser itsdangerous==1.1.0 Jinja2==2.10.3 lifter==0.4.1 diff --git a/setup.py b/setup.py index f27d31c9..11566ca4 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( name="hydrus", include_package_data=True, - version="0.3.1", + version="0.4.1", description="Hydra Ecosystem Flagship Server. Deploy REST data for Web 3.0", long_description=open("README.md").read(), long_description_content_type="text/markdown",