Skip to content

Commit b1d4cd6

Browse files
committed
Remove python interpreter option
1 parent 1828e9f commit b1d4cd6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

cookiecutter.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
"description": "A short description of the project.",
66
"open_source_license": ["MIT", "BSD-3-Clause", "No license file"],
77
"s3_bucket": "[OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')",
8-
"aws_profile": "default",
9-
"python_interpreter": ["python", "python3"]
8+
"aws_profile": "default"
109
}

{{ cookiecutter.repo_name }}/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
88
BUCKET = {{ cookiecutter.s3_bucket }}
99
PROFILE = {{ cookiecutter.aws_profile }}
1010
PROJECT_NAME = {{ cookiecutter.repo_name }}
11-
PYTHON_INTERPRETER = {{ cookiecutter.python_interpreter }}
11+
PYTHON_INTERPRETER = "python3"
1212

1313
ifeq (,$(shell which conda))
1414
HAS_CONDA=False

{{ cookiecutter.repo_name }}/test_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
REQUIRED_PYTHON = "{{ cookiecutter.python_interpreter }}"
3+
REQUIRED_PYTHON = "python3"
44

55

66
def main():

0 commit comments

Comments
 (0)