Change gitpod configuration for python3. (#1827)

This commit is contained in:
Brian Larsen 2020-04-07 05:20:08 -05:00 committed by GitHub
parent 3d129a4964
commit e5f7fbcc9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
tasks:
- init: pip install -r ./requirements.txt
- init: pip3 install -r ./requirements.txt

View File

@ -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.