Skip to content

Commit e6da735

Browse files
committed
v1.2.1: dependency fixes
Signed-off-by: Chris Warrick <[email protected]>
1 parent 6fa8673 commit e6da735

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Appendix A. Changelog
33
=====================
44

5+
v1.2.1
6+
------
7+
8+
* Specify deps in ``setup.py``
9+
510
v1.2.0
611
------
712

docs/admin/setup.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ use an existing site.
1919
Virtualenv
2020
==========
2121

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

2424
.. code-block:: console
2525
2626
# virtualenv-2.7 /var/coil
2727
# cd /var/coil
2828
# source bin/activate
2929
# pip install nikola coil uwsgi
30+
# pip install 'git+https://github.com/nvie/rq.git#egg=rq'
3031
3132
Nikola and ``conf.py``
3233
======================

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Nikola>=7.4.1
21
git+https://github.com/nvie/rq.git#egg=rq
2+
Nikola>=7.4.1
33
blinker==1.3
44
docopt==0.6.2
55
docutils==0.12

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
from setuptools import setup
55

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

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

0 commit comments

Comments
 (0)