From 4535069b4bc381f23c4c4dc1d078b8b59b85304f Mon Sep 17 00:00:00 2001 From: Vojtech Cima <cima.vojtech@gmail.com> Date: Mon, 23 Oct 2017 15:27:18 +0200 Subject: [PATCH] [ENH] Hardcode version for Python dependency modules --- README.md | 2 +- python/requirements.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 python/requirements.txt diff --git a/README.md b/README.md index e710f65..cbfaa26 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Note that before re-running `docker-compose up` you need to run `docker-compose ``` virtualenv -p python3 loom_client_env source loom_client_env/bin/activate -pip3 install cloudpickle protobuf +pip3 install -r python/requirements.txt cd ./python chmod +x generate.sh ./generate.sh diff --git a/python/requirements.txt b/python/requirements.txt new file mode 100644 index 0000000..a4ac969 --- /dev/null +++ b/python/requirements.txt @@ -0,0 +1,3 @@ +bokeh==0.12.4 +protobuf==3.2.0 +cloudpickle==0.2.2 -- GitLab