I am trying to build the Open edX image and its failing at:
198 | >>> RUN ./manage.py lms --settings=tutor.i18n pull_plugin_translations --verbose --repository='openedx/openedx-translations' --revision='open-release/redwood.3'
The logs I get for the same:
> [production 19/37] RUN ./manage.py lms --settings=tutor.i18n pull_plugin_translations --verbose --repository='openedx/openedx-translations' --revision='open-release/redwood.3':
4.383 Traceback (most recent call last):
4.383 File "/openedx/edx-platform/./manage.py", line 103, in <module>
4.383 startup.run()
4.383 File "/openedx/edx-platform/lms/startup.py", line 20, in run
4.383 django.setup()
4.383 File "/openedx/venv/lib/python3.11/site-packages/django/__init__.py", line 24, in setup
4.383 apps.populate(settings.INSTALLED_APPS)
4.383 File "/openedx/venv/lib/python3.11/site-packages/django/apps/registry.py", line 116, in populate
4.384 app_config.import_models()
4.384 File "/openedx/venv/lib/python3.11/site-packages/django/apps/config.py", line 269, in import_models
4.384 self.models_module = import_module(models_module_name)
4.384 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4.384 File "/opt/pyenv/versions/3.11.8/lib/python3.11/importlib/__init__.py", line 126, in import_module
4.384 return _bootstrap._gcd_import(name[level:], package, level)
4.384 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4.384 File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
4.384 File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
4.384 File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
4.384 File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
4.384 File "<frozen importlib._bootstrap_external>", line 940, in exec_module
4.384 File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
4.384 File "/openedx/edx-platform/lms/djangoapps/bulk_email/models.py", line 22, in <module>
4.385 from openedx.core.djangoapps.course_groups.cohorts import get_cohort_by_name
4.385 File "/openedx/edx-platform/openedx/core/djangoapps/course_groups/cohorts.py", line 21, in <module>
4.385 from lms.djangoapps.courseware import courses
4.385 File "/openedx/edx-platform/lms/djangoapps/courseware/courses.py", line 52, in <module>
4.385 from lms.djangoapps.courseware.block_render import get_block
4.385 File "/openedx/edx-platform/lms/djangoapps/courseware/block_render.py", line 48, in <module>
4.385 from xmodule.library_tools import LibraryToolsService
4.385 File "/openedx/edx-platform/xmodule/library_tools.py", line 12, in <module>
4.385 from openedx.core.djangoapps.content_libraries import api as library_api
4.385 File "/openedx/edx-platform/openedx/core/djangoapps/content_libraries/api.py", line 103, in <module>
4.385 from . import permissions, tasks
4.385 File "/openedx/edx-platform/openedx/core/djangoapps/content_libraries/tasks.py", line 43, in <module>
4.385 from xmodule.capa_block import ProblemBlock
4.385 File "/openedx/edx-platform/xmodule/capa_block.py", line 30, in <module>
4.385 from xmodule.capa.capa_problem import LoncapaProblem, LoncapaSystem
4.385 File "/openedx/edx-platform/xmodule/capa/capa_problem.py", line 32, in <module>
4.385 import xmodule.capa.inputtypes as inputtypes
4.385 File "/openedx/edx-platform/xmodule/capa/inputtypes.py", line 55, in <module>
4.385 from chem import chemcalc
4.385 File "/openedx/venv/lib/python3.11/site-packages/chem/chemcalc.py", line 5, in <module>
4.385 import nltk
4.385 File "/openedx/venv/lib/python3.11/site-packages/nltk/__init__.py", line 133, in <module>
4.385 from nltk.collocations import *
4.385 File "/openedx/venv/lib/python3.11/site-packages/nltk/collocations.py", line 36, in <module>
4.385 from nltk.metrics import (
4.385 File "/openedx/venv/lib/python3.11/site-packages/nltk/metrics/__init__.py", line 18, in <module>
4.385 from nltk.metrics.association import (
4.385 File "/openedx/venv/lib/python3.11/site-packages/nltk/metrics/association.py", line 26, in <module>
4.385 from scipy.stats import fisher_exact
4.385 File "/openedx/venv/lib/python3.11/site-packages/scipy/stats/__init__.py", line 485, in <module>
4.386 from ._stats_py import *
4.386 File "/openedx/venv/lib/python3.11/site-packages/scipy/stats/_stats_py.py", line 39, in <module>
4.386 from scipy.spatial.distance import cdist
4.386 File "/openedx/venv/lib/python3.11/site-packages/scipy/spatial/__init__.py", line 105, in <module>
4.386 from ._kdtree import *
4.386 File "/openedx/venv/lib/python3.11/site-packages/scipy/spatial/_kdtree.py", line 4, in <module>
4.386 from ._ckdtree import cKDTree, cKDTreeNode
4.386 File "_ckdtree.pyx", line 1, in init scipy.spatial._ckdtree
4.386 ValueError: numpy.dtype size changed, may indicate binary incompatibility. Expected 96 from C header, got 88 from PyObject
------
Dockerfile:198
--------------------
196 | # Pull latest translations via atlas
197 | RUN make clean_translations
198 | >>> RUN ./manage.py lms --settings=tutor.i18n pull_plugin_translations --verbose --repository='openedx/openedx-translations' --revision='open-release/redwood.3'
199 | RUN ./manage.py lms --settings=tutor.i18n pull_xblock_translations --repository='openedx/openedx-translations' --revision='open-release/redwood.3'
200 | RUN atlas pull --repository='openedx/openedx-translations' --revision='open-release/redwood.3' \
--------------------
ERROR: failed to solve: process "/bin/sh -c ./manage.py lms --settings=tutor.i18n pull_plugin_translations --verbose --repository='openedx/openedx-translations' --revision='open-release/redwood.3'" did not complete successfully: exit code: 1
It was fine till today morning (9 hours ago), just all of a sudden got this error.