Skip to content

Commit

Permalink
Release 0.4.1 (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mec-iS authored Mar 13, 2021
1 parent 5dfc6ff commit f31015f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f31015f

Please sign in to comment.