Commit ce005072 by Ned Batchelder Committed by e0d

Sandbox-installed packages will be really installed instead of -e installed.

parent 073c6d9a
...@@ -2,7 +2,7 @@ from setuptools import setup ...@@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="calc", name="calc",
version="0.1", version="0.1.1",
py_modules=["calc"], py_modules=["calc"],
install_requires=[ install_requires=[
"pyparsing==1.5.6", "pyparsing==1.5.6",
......
...@@ -2,7 +2,7 @@ from setuptools import setup ...@@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="chem", name="chem",
version="0.1", version="0.1.1",
packages=["chem"], packages=["chem"],
install_requires=[ install_requires=[
"pyparsing==1.5.6", "pyparsing==1.5.6",
......
...@@ -2,7 +2,7 @@ from setuptools import setup ...@@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="sandbox-packages", name="sandbox-packages",
version="0.1", version="0.1.1",
packages=[ packages=[
"verifiers", "verifiers",
], ],
......
# Packages to install in the Python sandbox for secured execution. # Packages to install in the Python sandbox for secured execution.
scipy==0.11.0 scipy==0.11.0
lxml==3.0.1 lxml==3.0.1
-e common/lib/calc
-e common/lib/chem # Install these packages from the edx-platform working tree
-e common/lib/sandbox-packages # NOTE: if you change code in these packages, you MUST change the version
# number in its setup.py or the code WILL NOT be installed during deploy.
common/lib/calc
common/lib/chem
common/lib/sandbox-packages
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