You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2016/08/26 00:33:11 UTC

allura git commit: Remove requirements from setup.py

Repository: allura
Updated Branches:
  refs/heads/master b9a5e9ae6 -> b1b2e58ac


Remove requirements from setup.py

* they are already listed (more precisely) in requirements.txt
* old versions of setuptools will actually end up installing newer
  versions of these packages when running `python setup.py develop`
* that was causing test failures when a newer version of Pygments
  got installed, see https://bitbucket.org/birkenfeld/pygments-main/issues/1254/empty-at-the-begining-of-the-highlight


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/b1b2e58a
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/b1b2e58a
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/b1b2e58a

Branch: refs/heads/master
Commit: b1b2e58acd9af634f84e5b8eb35a58bf22214bcb
Parents: b9a5e9a
Author: Dave Brondsema <da...@brondsema.net>
Authored: Thu Aug 25 20:31:09 2016 -0400
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Thu Aug 25 20:31:09 2016 -0400

----------------------------------------------------------------------
 Allura/setup.py     | 16 ----------------
 AlluraTest/setup.py |  2 --
 2 files changed, 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/b1b2e58a/Allura/setup.py
----------------------------------------------------------------------
diff --git a/Allura/setup.py b/Allura/setup.py
index a9607f8..75a847b 100644
--- a/Allura/setup.py
+++ b/Allura/setup.py
@@ -55,22 +55,6 @@ setup(
         'License :: OSI Approved :: Apache Software License',
     ],
     install_requires=[
-        "TurboGears2",
-        "pypeline",
-        "datadiff",
-        "BeautifulSoup",
-        "PasteScript",
-        "Babel >= 0.9.4",
-        "jinja2",
-        "pysolr",
-        "Markdown >= 2.0.3",
-        "Pygments >= 1.1.1",
-        "EasyWidgets >= 0.1.1",
-        "iso8601",
-        "chardet >= 1.0.1",
-        "feedparser >= 5.0.1",
-        "oauth2 >= 1.2.0",
-        "Ming >= 0.2.2dev-20110930",
     ],
     setup_requires=["PasteScript >= 1.7"],
     paster_plugins=['PasteScript', 'Pylons', 'TurboGears2', 'Ming'],

http://git-wip-us.apache.org/repos/asf/allura/blob/b1b2e58a/AlluraTest/setup.py
----------------------------------------------------------------------
diff --git a/AlluraTest/setup.py b/AlluraTest/setup.py
index 5a03015..056c61d 100644
--- a/AlluraTest/setup.py
+++ b/AlluraTest/setup.py
@@ -33,7 +33,5 @@ setup(name='AlluraTest',
       include_package_data=True,
       zip_safe=False,
       install_requires=[
-          "poster",
-          # -*- Extra requirements: -*-
       ]
       )