From 864b6b6b3ae96b12f6fc456b549c4feb9a5b8c68 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Sat, 3 Mar 2018 12:49:49 -0700 Subject: [PATCH 1/2] Add build output to the .gitignore This is more of a problem if the build fails for whatever reason. Signed-off-by: Travis Ralston --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1742b2a4..84ac4951 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ /scripts/continuserv/continuserv /scripts/speculator/speculator /scripts/swagger +/scripts/tmp /templating/out *.pyc *.swp From 04e39c849674a1337652c082a352fda72e9d566e Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Sat, 3 Mar 2018 12:50:30 -0700 Subject: [PATCH 2/2] Document the Python version explicitly The spec uses 2.x currently and is not compatible with Python 3. Signed-off-by: Travis Ralston --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 5c9edac7..2a359db6 100644 --- a/README.rst +++ b/README.rst @@ -41,7 +41,7 @@ specs and event schemas in this repository. Preparation ----------- -To use the scripts, it is best to create a Python virtualenv as follows:: +To use the scripts, it is best to create a Python 2.x virtualenv as follows:: virtualenv env env/bin/pip install -r scripts/requirements.txt