Commit 0ed2ef8a by Calen Pennington

Move course_discovery to Python3.5

parent 9f636859
......@@ -27,8 +27,32 @@
dest: "{{ course_discovery_home }}/course_discovery_gunicorn.py"
sudo_user: "{{ course_discovery_user }}"
tags:
- install
- install:configuration
- name: add deadsnakes repository
apt_repository:
repo: "ppa:fkrull/deadsnakes"
tags:
- install
- install:system-requirements
- name: install python3.5
apt: pkg={{ item }}
with_items:
- python3.5
- python3.5-dev
tags:
- install
- install:system-requirements
- name: build virtualenv
shell: "virtualenv --python=python3.5 {{ course_discovery_venv_dir }}"
sudo_user: "{{ course_discovery_user }}"
tags:
- install
- install:system-requirements
- name: install application requirements
shell: >
chdir=/edx/app/course_discovery/course_discovery
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment