diff --git a/docs/topics/development.rst b/docs/topics/development.rst index e7d7e6bb85..3e4213db71 100644 --- a/docs/topics/development.rst +++ b/docs/topics/development.rst @@ -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 /dist/mayan-edms-1.1.0.tar.gz + $ pip install /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 /dist/mayan_edms-1.1.0-py2-none-any.whl + $ pip install /dist/mayan_edms-1.1.1-py2-none-any.whl $ mayan-edms.py initialsetup $ mayan-edms.py runserver