--Thanks,--Ned.
You received this message because you are subscribed to the Google Groups "General Open edX discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/CAGtJPNNv_3QnXO%2Bp7AYt0QMR%3DJMJNbtXMSkK6tNu9qABmy%2BoOA%40mail.gmail.com.
Hi Cristian,I'm sorry, can you clarify what you mean? Are you asking what the "few more fixes" are that we will be making?
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/9fa45ce2-38c3-4a67-bf9a-aec2b8bd5076%40googlegroups.com.
Hi,One thing that I would like to have in this, or future releases.As a non-English fork maintainer I would like to have enough time before the release cut date to get my Transifex translation to something satisfactory (i.e. 100% reviewed for the important resources).The thing is, it is very hard for me to know when new strings are being pushed to Transifex and when they're getting pulled.The time window most of the time is either too narrow for us to react, or it is unknown and that's why we tend to miss it.Could this be communicated clearly? Especially around the release cut dates?
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/a7d35b80-69ba-4812-822a-990ef999d9d2%40googlegroups.com.
TASK: [edxapp | code sandbox | Install sandbox requirements into sandbox venv] ***
Looks like atlas, numpy and scipy problems. I haven't encountered those in a while...
/edx/bin/edxapp-migrate-lms --fake oauth2_provider zero
/edx/bin/edxapp-migrate-lms --fake-initial
EDXAPP_FEATURES:
ENABLE_CSMH_EXTENDED: true
ENABLE_READING_FROM_MULTIPLE_HISTORY_TABLES: true
sudo apt-get install python-numpy python-scipy libblas-dev liblapack-dev gfortran python-dev
sudo pip install numpy --upgrade
sudo pip install scipy --upgrade
sudo apt-get ...
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/a7d35b80-69ba-4812-822a-990ef999d9d2%40googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "General Open edX discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/CAGtJPNPUkT7bbw04x8_%2B7D3HiO%2B1o6VXDCUgaXN3Z-RCmPCuUQ%40mail.gmail.com.
Senior Engineer, Edraak.org
Queen Rania Foundation
for Education & Development
T +962 6 4016464 Ext. 700
So, to provide a bit more detail here...I ran into this issue last week when doing a clean rebuild of some EdX boxes. The root of the issue is that SciPy released version 0.18 last Tuesday, which requires Numpy version >=1.7.2. EdX is pinning Numpy to 1.6.2, but the dependencies listed in local.txt in requirements/edx-sandbox/local.txt have scipy in their `install_requires` attribute of setup.py without any version specifier. This causes 0.18 to be pulled in which fails to build because numpy is already present but at a version that is too old.My solution was to issue this PR: https://github.com/edx/edx-platform/pull/13136I agree, however, that as many dependencies as possible should be updated as part of the Eucalyptus release.