Merge pull request #24171 from edx/feanil/update-sandbox-reqs-2

Feanil/update sandbox reqs 2
This commit is contained in:
Feanil Patel
2020-06-09 08:59:22 -04:00
committed by GitHub
4 changed files with 11 additions and 9 deletions

View File

@@ -79,10 +79,10 @@ with codecs.open(CONFIG_FILE, encoding='utf-8') as f:
vars().update(__config_copy__)
# A file path to a YAML file from which to load all the code revisions currently deployed
REVISION_CONFIG_FILE = get_env_setting('REVISION_CFG')
try:
# A file path to a YAML file from which to load all the code revisions currently deployed
REVISION_CONFIG_FILE = get_env_setting('REVISION_CFG')
with codecs.open(REVISION_CONFIG_FILE, encoding='utf-8') as f:
REVISION_CONFIG = yaml.safe_load(f)
except Exception: # pylint: disable=broad-except

View File

@@ -92,10 +92,10 @@ with codecs.open(CONFIG_FILE, encoding='utf-8') as f:
vars().update(__config_copy__)
# A file path to a YAML file from which to load all the code revisions currently deployed
REVISION_CONFIG_FILE = get_env_setting('REVISION_CFG')
try:
# A file path to a YAML file from which to load all the code revisions currently deployed
REVISION_CONFIG_FILE = get_env_setting('REVISION_CFG')
with codecs.open(REVISION_CONFIG_FILE, encoding='utf-8') as f:
REVISION_CONFIG = yaml.safe_load(f)
except Exception: # pylint: disable=broad-except

View File

@@ -107,3 +107,5 @@ wrapt==1.11.*
# zipp 2.0.0 requires Python >= 3.6
zipp==1.0.0
# Matplotlib 3.1 requires Python 3.6
matplotlib<3.1

View File

@@ -18,11 +18,11 @@
-r shared.txt # Dependencies in common with LMS and Studio
chem # A helper library for chemistry calculations
matplotlib==2.2.4 # 2D plotting library
numpy==1.7.2 # Numeric array processing utilities; used by scipy
numpy==1.16.5 # Numeric array processing utilities; used by scipy
pyparsing==2.2.0 # Python Parsing module
random2 # Implementation of random module that works identically under Python 2 and 3
scipy==0.14.0 # Math, science, and engineering library
sympy==0.7.1 # Symbolic math library
scipy==1.2.1 # Math, science, and engineering library
sympy==1.4 # Symbolic math library
git+https://github.com/edx/openedx-calc.git@e9b698c85ad1152002bc0868f475f153dce88952#egg=calc==0.4
# Install these packages from the edx-platform working tree