Skip to content

Commit

Permalink
Merge branch 'pull_#1303'
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaiarocci committed Aug 26, 2019
2 parents 398c78b + 5fdee8d commit ce0a0ea
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ New

Fixed
~~~~~
- Update installation instructions (`#1303`_)
- (*breaking*) Delete on empty resource returns 404, should return 204
(`#1299`_)
- MONGO_REPLICA_SET ignored (`#1302`_)
- ``MONGO_REPLICA_SET`` ignored (`#1302`_)
- Documentation typo (`#1293`_)
- Flask 1.1.1 breaks ``test_logging_info`` test (`#1296`_)
- Display the full release number on Eve frontpage.
- Update link to EveGenie repository. New maintainer: David Zisky.

.. _`#1303`: https://github.com/pyeve/eve/pull/1303
.. _`#1299`: https://github.com/pyeve/eve/issues/1299
.. _`#1302`: https://github.com/pyeve/eve/issues/1302
.. _`#1296`: https://github.com/pyeve/eve/issues/1296
Expand Down
21 changes: 11 additions & 10 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Installation
This part of the documentation covers the installation of Eve. The first step
to using any software package is getting it properly installed.

Installing Eve is simple with `pip <http://www.pip-installer.org/>`_:
Installing Eve is simple with `pip <https://pip.pypa.io/en/stable/>`_:

.. code-block:: console
Expand All @@ -23,17 +23,20 @@ Get the git checkout in a new virtualenv and run in development mode.

.. code-block:: console
$ git clone http://github.com/pyeve/eve.git
Initialized empty Git repository in ~/dev/eve/.git/
$ git clone https://github.com/pyeve/eve.git
Cloning into 'eve'...
...
$ cd eve
$ virtualenv venv
New python executable in venv/bin/python
...
Installing setuptools, pip, wheel...
done.
$ . venv/bin/activate
$ python setup.py install
$ pip install .
...
Finished processing dependencies for Eve
Successfully installed ...
This will pull in the dependencies and activate the git head as the current
version inside the virtualenv. Then all you have to do is run ``git pull
Expand All @@ -47,10 +50,8 @@ To just get the development version without git, do this instead:
$ cd eve
$ virtualenv venv
$ . venv/bin/activate
New python executable in venv/bin/python
$ pip install git+git://github.com/pyeve/eve.git
$ pip install git+https://github.com/pyeve/eve.git
...
Cleaning up...
Successfully installed ...
And you're done!

0 comments on commit ce0a0ea

Please sign in to comment.