From e5f7fbcc9ec6f02c59f8e4ac2d7b7936c60afab0 Mon Sep 17 00:00:00 2001 From: Brian Larsen Date: Tue, 7 Apr 2020 05:20:08 -0500 Subject: [PATCH] Change gitpod configuration for python3. (#1827) --- .gitpod.yml | 2 +- CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index a5bc5751a..5975b8b8e 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,2 +1,2 @@ tasks: - - init: pip install -r ./requirements.txt + - init: pip3 install -r ./requirements.txt diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 11b956d73..d939108a4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -139,7 +139,7 @@ We want your work to be readable by others; therefore, we encourage you to note #### Other Standard While Submitting Your Work -- File extension for code should be `.py`. Jupiter notebook files are acceptable in machine learning algorithms. +- File extension for code should be `.py`. Jupyter notebook files are acceptable in machine learning algorithms. - Strictly use snake_case (underscore_separated) in your file_name, as it will be easy to parse in future using scripts. - Please avoid creating new directories if at all possible. Try to fit your work into the existing directory structure. - If possible, follow the standard *within* the folder you are submitting to.