diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-06-15 17:26:59 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-06-15 17:26:59 +0200 |
commit | 5c80954224319cfd46d02966ce28647ff4ce26d5 (patch) | |
tree | 43475dcaa9de06759078807fe841afba969f631c | |
parent | 3defc28777c7917139fa74e2f84786194cd6c734 (diff) | |
download | haketilo-hydrilla-5c80954224319cfd46d02966ce28647ff4ce26d5.tar.gz haketilo-hydrilla-5c80954224319cfd46d02966ce28647ff4ce26d5.zip |
minor README improvements before the 1.1-beta1 releasev1.1-beta1v1.x
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -25,7 +25,6 @@ The information below is meant to help hack on the codebase. If you're instead l ### Test * pytest -* reuse ## Building @@ -47,7 +46,8 @@ Commands like `python3 -m build` and `python3 -m pip` but also `virtualenv` will To perform the build and installation without PyPI, first install all dependencies system-wide. For example, in Debian-based distributions (including Trisquel): ``` shell sudo apt install python3-flask python3-flask python3-jsonschema \ - python3-setuptools python3-setuptools-scm python3-babel python3-wheel + python3-setuptools python3-setuptools-scm python3-babel python3-wheel \ + python3-build ``` If you're using `virtualenv` command to create a virtual environment, make sure you invoke it with `--system-site-packages` and `--no-download`. The first option is necessary for packages installed inside the virtualenv to be able to use globally-installed dependencies. The second one will make `virtualenv` use locally-available base libraries (setuptools, etc.) instead of downloading them from PyPI. @@ -74,8 +74,8 @@ Instead of building yourself you can use Python wheels provided on [Hydrilla dow ``` shell python3 -m pip install \ - path/to/downloaded/hydrilla.builder-1.0-py3-none-any.whl \ - path/to/downloaded/hydrilla-1.0-py3-none-any.whl + path/to/downloaded/hydrilla.builder-1.1b1-py3-none-any.whl \ + path/to/downloaded/hydrilla-1.1b1-py3-none-any.whl ``` ## Running |