From 2b4b2c8fb96fa13d1918b18b584fa34faabccd2d Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Fri, 30 Nov 2018 10:47:31 -0500 Subject: [PATCH] Set depth as 50 --- readthedocs/config/config.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/readthedocs/config/config.py b/readthedocs/config/config.py index 4b7c48f5649..b4d51a51cf9 100644 --- a/readthedocs/config/config.py +++ b/readthedocs/config/config.py @@ -55,25 +55,25 @@ INVALID_KEYS_COMBINATION = 'invalid-keys-combination' INVALID_KEY = 'invalid-key' -DOCKER_DEFAULT_IMAGE = 'readthedocs/build' +DOCKER_DEFAULT_IMAGE = 'readthedocs/build-dev' DOCKER_DEFAULT_VERSION = '2.0' # These map to corresponding settings in the .org, # so they haven't been renamed. DOCKER_IMAGE = '{}:{}'.format(DOCKER_DEFAULT_IMAGE, DOCKER_DEFAULT_VERSION) DOCKER_IMAGE_SETTINGS = { - 'readthedocs/build:1.0': { + 'readthedocs/build-dev:1.0': { 'python': {'supported_versions': [2, 2.7, 3, 3.4]}, }, - 'readthedocs/build:2.0': { + 'readthedocs/build-dev:2.0': { 'python': {'supported_versions': [2, 2.7, 3, 3.5]}, }, - 'readthedocs/build:3.0': { + 'readthedocs/build-dev:3.0': { 'python': {'supported_versions': [2, 2.7, 3, 3.3, 3.4, 3.5, 3.6]}, }, - 'readthedocs/build:stable': { + 'readthedocs/build-dev:stable': { 'python': {'supported_versions': [2, 2.7, 3, 3.3, 3.4, 3.5, 3.6]}, }, - 'readthedocs/build:latest': { + 'readthedocs/build-dev:latest': { 'python': {'supported_versions': [2, 2.7, 3, 3.3, 3.4, 3.5, 3.6]}, }, }