Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
afeef4cb
Commit
afeef4cb
authored
Jul 15, 2015
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix setuptools infinite loop bug triggered by python-saml
parent
957c8144
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
pavelib/prereqs.py
+1
-0
requirements/edx/base.txt
+3
-2
requirements/edx/post.txt
+12
-0
No files found.
pavelib/prereqs.py
View file @
afeef4cb
...
...
@@ -16,6 +16,7 @@ PYTHON_REQ_FILES = [
'requirements/edx/github.txt'
,
'requirements/edx/local.txt'
,
'requirements/edx/base.txt'
,
'requirements/edx/post.txt'
,
]
# Developers can have private requirements, for local copies of github repos,
...
...
requirements/edx/base.txt
View file @
afeef4cb
...
...
@@ -44,7 +44,6 @@ 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
...
...
@@ -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
...
...
requirements/edx/post.txt
0 → 100644
View file @
afeef4cb
# DON'T JUST ADD NEW DEPENDENCIES!!!
#
# If you open a pull request that adds a new dependency, you should notify:
# * @mollydb - to check licensing
# * support@edx.org - to check system requirements
# 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment