Skip to content

Commit

Permalink
Update to version 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Mar 4, 2020
1 parent 3f51aab commit 15c1ed6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/INSTALL.rst
Expand Up @@ -55,17 +55,17 @@ steps:

- Run the buildout

The following examples are from Linux and use Zope version 4.1. Just replace
The following examples are from Linux and use Zope version 4.3. Just replace
that version number with your desired version.

Built-in standard buildout configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: console
$ wget https://pypi.org/packages/source/Z/Zope/Zope-4.1.tar.gz
$ tar xfvz Zope-4.1.tar.gz
$ cd Zope-4.1
$ wget https://pypi.org/packages/source/Z/Zope/Zope-4.3.tar.gz
$ tar xfvz Zope-4.3.tar.gz
$ cd Zope-4.3
$ python3.7 -m venv .
$ bin/pip install -U pip zc.buildout
$ bin/buildout
Expand Down Expand Up @@ -96,7 +96,7 @@ Here's a minimum ``buildout.cfg`` configuration example:
[buildout]
extends =
https://zopefoundation.github.io/Zope/releases/4.1/versions-prod.cfg
https://zopefoundation.github.io/Zope/releases/4.3/versions-prod.cfg
parts =
zopescripts
Expand All @@ -119,7 +119,7 @@ options, please see the
[buildout]
extends =
https://zopefoundation.github.io/Zope/releases/4.1/versions-prod.cfg
https://zopefoundation.github.io/Zope/releases/4.3/versions-prod.cfg
parts =
zopeinstance
Expand Down Expand Up @@ -156,16 +156,16 @@ steps:

- Install Zope and its dependencies

Example steps on Linux. Replace the version number "4.1" with the latest
Example steps on Linux. Replace the version number "4.3" with the latest
version you find on https://zopefoundation.github.io/Zope/:

.. code-block:: console
$ python3.7 -m venv zope
$ cd zope
$ bin/pip install -U pip
$ bin/pip install Zope[wsgi]==4.1.3 \
-c https://zopefoundation.github.io/Zope/releases/4.1.3/constraints.txt
$ bin/pip install Zope[wsgi]==4.3 \
-c https://zopefoundation.github.io/Zope/releases/4.3/constraints.txt
You can also install Zope using a single requirements file. **Note that this
installation method might install packages that are not actually needed** (i. e.
Expand All @@ -174,7 +174,7 @@ more than are listed in the ``install_requires`` section of ``setup.py``):
.. code-block:: console
$ bin/pip install \
-r https://zopefoundation.github.io/Zope/releases/4.1.3/requirements-full.txt
-r https://zopefoundation.github.io/Zope/releases/4.3/requirements-full.txt
Building the documentation with ``Sphinx``
Expand Down

0 comments on commit 15c1ed6

Please sign in to comment.