Remove references to python

This commit is contained in:
Rafa de la Torre 2016-04-13 17:06:27 +02:00
parent fba43cf3b5
commit bc584f810a
2 changed files with 5 additions and 10 deletions

View File

@ -44,9 +44,7 @@ shall always be done in a topic branch created from the `develop` branch.
Tests, documentation and peer code reviews are required for all Tests, documentation and peer code reviews are required for all
modifications. modifications.
The tests (both for SQL and Python) are executed by running, The tests are executed by running this from the top directory:
from the top directory:
``` ```
sudo make install sudo make install
make test make test

View File

@ -15,9 +15,7 @@ To do so [Semantic Versioning 2.0](http://semver.org/) is in order.
Thew `NEWS.md` will be updated. Thew `NEWS.md` will be updated.
The next command must be executed to produce the main installation The next command must be executed to produce the main installation
script for the new release, `release/observatory--X.Y.Z.sql` and script for the new release, `release/observatory--X.Y.Z.sql`:
also to copy the python package to `release/python/X.Y.Z/observatory`.
``` ```
make release make release
``` ```
@ -58,12 +56,11 @@ sudo make deploy RELEASE_VERSION=X.Y.Z
Intended for use by the release manager. Intended for use by the release manager.
* `sudo make deploy` will install the current release X.Y.Z from the * `sudo make deploy` will install the current release X.Y.Z from the
`release/` files into PostgreSQL and a Python virtual environment `release/` files into PostgreSQL.
`envs/X.Y.Z`.
Intended for use by the release manager and deployment jobs. Intended for use by the release manager and deployment jobs.
* `sudo make deploy RELEASE_VERSION=X.Y.Z` will install specified version * `sudo make deploy RELEASE_VERSION=X.Y.Z` will install specified version
previously generated in `release/` previously generated in `release/`
into PostgreSQL and a Python virtual environment `envs/X.Y.Z`. into PostgreSQL.
Intended for use by the release manager and deployment jobs. Intended to be used by the release manager and deployment jobs.
``` ```