Skip to content

Commit

Permalink
v1.2.1: dependency fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed May 20, 2015
1 parent 6fa8673 commit e6da735
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -2,6 +2,11 @@
Appendix A. Changelog
=====================

v1.2.1
------

* Specify deps in ``setup.py``

v1.2.0
------

Expand Down
3 changes: 2 additions & 1 deletion docs/admin/setup.rst
Expand Up @@ -19,14 +19,15 @@ use an existing site.
Virtualenv
==========

Create a virtualenv in ``/var/coil`` and install Coil, Nikola and uWSGI in it.
Create a virtualenv in ``/var/coil`` and install Coil, Nikola, uWSGI and rq in it.

.. code-block:: console
# virtualenv-2.7 /var/coil
# cd /var/coil
# source bin/activate
# pip install nikola coil uwsgi
# pip install 'git+https://github.com/nvie/rq.git#egg=rq'
Nikola and ``conf.py``
======================
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,5 +1,5 @@
Nikola>=7.4.1
git+https://github.com/nvie/rq.git#egg=rq
Nikola>=7.4.1
blinker==1.3
docopt==0.6.2
docutils==0.12
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -4,10 +4,10 @@
from setuptools import setup

with open('requirements.txt', 'r') as fh:
dependencies = [l.strip() for l in fh][2:]
dependencies = [l.strip() for l in fh][1:]

setup(name='coil',
version='1.2.0',
version='1.2.1',
description='A user-friendly CMS frontend for Nikola.',
keywords='coil,nikola,cms',
author='Chris Warrick, Roberto Alsina, Henry Hirsch et al.',
Expand Down

0 comments on commit e6da735

Please sign in to comment.