Merge pull request #8934 from edx/db/fix-python-saml-compile-issue
Re-upgrade to setuptools
This commit is contained in:
@@ -4,5 +4,5 @@ setup(
|
||||
name="capa",
|
||||
version="0.1",
|
||||
packages=find_packages(exclude=["tests"]),
|
||||
install_requires=["distribute>=0.6.28"],
|
||||
install_requires=["setuptools"],
|
||||
)
|
||||
|
||||
@@ -54,7 +54,7 @@ setup(
|
||||
version="0.1",
|
||||
packages=find_packages(exclude=["tests"]),
|
||||
install_requires=[
|
||||
'distribute',
|
||||
'setuptools',
|
||||
'docopt',
|
||||
'capa',
|
||||
'path.py',
|
||||
|
||||
@@ -13,7 +13,6 @@ celery==3.1.18
|
||||
cssselect==0.9.1
|
||||
dealer==2.0.4
|
||||
defusedxml==0.4.1
|
||||
distribute>=0.6.28, <0.7
|
||||
django-babel-underscore==0.1.0
|
||||
django-celery==3.1.16
|
||||
django-countries==3.3
|
||||
@@ -45,13 +44,13 @@ glob2==0.3
|
||||
gunicorn==0.17.4
|
||||
httpretty==0.8.3
|
||||
lazy==1.1
|
||||
lxml==3.4.4
|
||||
mako==0.9.1
|
||||
Markdown==2.2.1
|
||||
--allow-external meliae
|
||||
--allow-unverified meliae
|
||||
meliae==0.4.0
|
||||
mongoengine==0.10.0
|
||||
MySQL-python==1.2.5
|
||||
networkx==1.7
|
||||
nose==1.3.3
|
||||
oauthlib==0.7.2
|
||||
@@ -69,7 +68,6 @@ python-memcached==1.48
|
||||
python-openid==2.2.5
|
||||
python-dateutil==2.1
|
||||
python-social-auth==0.2.11
|
||||
python-saml==2.1.3
|
||||
pytz==2015.2
|
||||
pysrt==0.4.7
|
||||
PyYAML==3.10
|
||||
@@ -90,6 +88,9 @@ unicodecsv==0.9.4
|
||||
django-require==1.0.6
|
||||
pyuca==1.1
|
||||
|
||||
# This needs to be installed *after* Cython, which is in pre.txt
|
||||
lxml==3.4.4
|
||||
|
||||
# Used for shopping cart's pdf invoice/receipt generation
|
||||
reportlab==3.1.44
|
||||
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
# DON'T JUST ADD NEW DEPENDENCIES!!!
|
||||
#
|
||||
# If you open a pull request that adds a new dependency, you should notify:
|
||||
# * @mollydb to check licensing
|
||||
# * One of @e0d, @feanil, @fredsmith, @maxrothman, or @jibsheet
|
||||
# to check system requirements
|
||||
# * @mollydb - to check licensing
|
||||
# * support@edx.org - to check system requirements
|
||||
|
||||
# This must be installed after distribute has been updated.
|
||||
MySQL-python==1.2.4
|
||||
# This needs to be installed *after* lxml, which is in base.txt.
|
||||
# python-saml pulls in lxml as a dependency, and due to a bug in setuptools,
|
||||
# trying to compile lxml as a dependency causes setuptools to go into an
|
||||
# infinite loop and run out of memory. Because why would you trust a
|
||||
# dependency management tool to manage dependencies for you?
|
||||
python-saml==2.1.3
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
# * One of @e0d, @feanil, @fredsmith, @maxrothman, or @jibsheet
|
||||
# to check system requirements
|
||||
|
||||
# Use a modern setuptools instead of distribute
|
||||
setuptools==18.0.1
|
||||
|
||||
# Numpy and scipy can't be installed in the same pip run.
|
||||
# Install numpy before other things to help resolve the problem.
|
||||
numpy==1.6.2
|
||||
|
||||
2
setup.py
2
setup.py
@@ -7,7 +7,7 @@ from setuptools import setup
|
||||
setup(
|
||||
name="Open edX",
|
||||
version="0.4",
|
||||
install_requires=["distribute"],
|
||||
install_requires=["setuptools"],
|
||||
requires=[],
|
||||
# NOTE: These are not the names we should be installing. This tree should
|
||||
# be reorganized to be a more conventional Python tree.
|
||||
|
||||
Reference in New Issue
Block a user