##// END OF EJS Templates
setup: don't use setuptools 34 - it has indirect conflicts with the celery version supported on the stable branch (Issue #266)...
Mads Kiilerich -
r6577:b777b096 stable
parent child Browse files
Show More
@@ -34,7 +34,7 b' To get started with development::'
34 cd kallithea
34 cd kallithea
35 virtualenv ../kallithea-venv
35 virtualenv ../kallithea-venv
36 source ../kallithea-venv/bin/activate
36 source ../kallithea-venv/bin/activate
37 pip install --upgrade pip setuptools
37 pip install --upgrade pip "setuptools<34"
38 pip install -e .
38 pip install -e .
39 paster make-config Kallithea my.ini
39 paster make-config Kallithea my.ini
40 paster setup-db my.ini --user=user --email=user@example.com --password=password --repos=/tmp
40 paster setup-db my.ini --user=user --email=user@example.com --password=password --repos=/tmp
@@ -39,7 +39,7 b' repository, follow the instructions belo'
39 cd kallithea
39 cd kallithea
40 virtualenv ../kallithea-venv
40 virtualenv ../kallithea-venv
41 source ../kallithea-venv/bin/activate
41 source ../kallithea-venv/bin/activate
42 pip install --upgrade pip setuptools
42 pip install --upgrade pip "setuptools<34"
43 pip install -e .
43 pip install -e .
44 python2 setup.py compile_catalog # for translation of the UI
44 python2 setup.py compile_catalog # for translation of the UI
45
45
@@ -69,7 +69,7 b' An additional benefit of virtualenv_ is '
69 basic requirements are up-to-date by running::
69 basic requirements are up-to-date by running::
70
70
71 source /srv/kallithea/venv/bin/activate
71 source /srv/kallithea/venv/bin/activate
72 pip install --upgrade pip setuptools
72 pip install --upgrade pip "setuptools<34"
73
73
74 .. note:: You can't use UNIX ``sudo`` to source the ``virtualenv`` script; it
74 .. note:: You can't use UNIX ``sudo`` to source the ``virtualenv`` script; it
75 will "activate" a shell that terminates immediately. It is also perfectly
75 will "activate" a shell that terminates immediately. It is also perfectly
@@ -134,7 +134,7 b' In a command prompt type (adapting paths'
134
134
135 cd C:\Kallithea\Env\Scripts
135 cd C:\Kallithea\Env\Scripts
136 activate
136 activate
137 pip install --upgrade pip setuptools
137 pip install --upgrade pip "setuptools<34"
138
138
139 The prompt will change into "(Env) C:\\Kallithea\\Env\\Scripts" or similar
139 The prompt will change into "(Env) C:\\Kallithea\\Env\\Scripts" or similar
140 (depending of your folder structure). Then type::
140 (depending of your folder structure). Then type::
@@ -183,7 +183,7 b' In that CMD (loaded with VS2008 PATHs) t'
183
183
184 cd C:\Kallithea\Env\Scripts (or similar)
184 cd C:\Kallithea\Env\Scripts (or similar)
185 activate
185 activate
186 pip install --upgrade pip setuptools
186 pip install --upgrade pip "setuptools<34"
187
187
188 The prompt will change into "(Env) C:\\Kallithea\\Env\\Scripts" or similar
188 The prompt will change into "(Env) C:\\Kallithea\\Env\\Scripts" or similar
189 (depending of your folder structure). Then type::
189 (depending of your folder structure). Then type::
@@ -35,6 +35,7 b" callback = lambda V: ('.'.join(map(str, "
35 is_windows = __platform__ in ['Windows']
35 is_windows = __platform__ in ['Windows']
36
36
37 requirements = [
37 requirements = [
38 "setuptools<34", # setuptools==34 has an undeclared requirement of pyparsing >=2.1, but celery<2.3 requires pyparsing<2
38 "waitress==0.8.8",
39 "waitress==0.8.8",
39 "webob>=1.0.8,<=1.1.1",
40 "webob>=1.0.8,<=1.1.1",
40 "webtest==1.4.3",
41 "webtest==1.4.3",
General Comments 0
You need to be logged in to leave comments. Login now