Commit ffb0a6a0 by David Baumgold

Revert setuptools upgrade

parent e811ac26
...@@ -4,5 +4,5 @@ setup( ...@@ -4,5 +4,5 @@ setup(
name="capa", name="capa",
version="0.1", version="0.1",
packages=find_packages(exclude=["tests"]), packages=find_packages(exclude=["tests"]),
install_requires=["setuptools"], install_requires=["distribute>=0.6.28"],
) )
...@@ -54,7 +54,7 @@ setup( ...@@ -54,7 +54,7 @@ setup(
version="0.1", version="0.1",
packages=find_packages(exclude=["tests"]), packages=find_packages(exclude=["tests"]),
install_requires=[ install_requires=[
'setuptools', 'distribute',
'docopt', 'docopt',
'capa', 'capa',
'path.py', 'path.py',
......
...@@ -13,6 +13,7 @@ celery==3.1.18 ...@@ -13,6 +13,7 @@ celery==3.1.18
cssselect==0.9.1 cssselect==0.9.1
dealer==2.0.4 dealer==2.0.4
defusedxml==0.4.1 defusedxml==0.4.1
distribute>=0.6.28, <0.7
django-babel-underscore==0.1.0 django-babel-underscore==0.1.0
django-celery==3.1.16 django-celery==3.1.16
django-countries==3.3 django-countries==3.3
......
...@@ -5,9 +5,6 @@ ...@@ -5,9 +5,6 @@
# * One of @e0d, @feanil, @fredsmith, @maxrothman, or @jibsheet # * One of @e0d, @feanil, @fredsmith, @maxrothman, or @jibsheet
# to check system requirements # 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. # Numpy and scipy can't be installed in the same pip run.
# Install numpy before other things to help resolve the problem. # Install numpy before other things to help resolve the problem.
numpy==1.6.2 numpy==1.6.2
......
...@@ -7,7 +7,7 @@ from setuptools import setup ...@@ -7,7 +7,7 @@ from setuptools import setup
setup( setup(
name="Open edX", name="Open edX",
version="0.4", version="0.4",
install_requires=["setuptools"], install_requires=["distribute"],
requires=[], requires=[],
# NOTE: These are not the names we should be installing. This tree should # NOTE: These are not the names we should be installing. This tree should
# be reorganized to be a more conventional Python tree. # be reorganized to be a more conventional Python tree.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment