Update version in development documentation

This commit is contained in:
Roberto Rosario
2015-05-21 00:29:18 -04:00
parent 929487b5c5
commit 9cdf9af2ba

View File

@@ -458,7 +458,7 @@ This is the sequence of step I use to produce an installable package:
$ rm dist -R
2. Generate the packaged version (will produce dist/mayan-edms-1.1.0.tar.gz)::
2. Generate the packaged version (will produce dist/mayan-edms-1.1.1.tar.gz)::
$ python setup.py sdist
@@ -467,7 +467,7 @@ This is the sequence of step I use to produce an installable package:
$ cd /tmp
$ virtualenv venv
$ source venv/bin/activate
$ pip install <path of the Git repository>/dist/mayan-edms-1.1.0.tar.gz
$ pip install <path of the Git repository>/dist/mayan-edms-1.1.1.tar.gz
$ mayan-edms.py initialsetup
$ mayan-edms.py runserver
@@ -481,13 +481,13 @@ Wheel package
2. Create wheel package using the source file package (Until issue #99 of wheel is fixed: https://bitbucket.org/pypa/wheel/issue/99/cannot-exclude-directory)::
$ pip wheel --no-index --no-deps --wheel-dir dist dist/mayan-edms-1.1.0.tar.gz
$ pip wheel --no-index --no-deps --wheel-dir dist dist/mayan-edms-1.1.1.tar.gz
3. Do a test install::
$ cd /tmp
$ virtualenv venv
$ source venv/bin/activate
$ pip install <path of the Git repository>/dist/mayan_edms-1.1.0-py2-none-any.whl
$ pip install <path of the Git repository>/dist/mayan_edms-1.1.1-py2-none-any.whl
$ mayan-edms.py initialsetup
$ mayan-edms.py runserver