Skip to content

Commit d4d5e60

Browse files
committed
Only remove 1.0
1 parent bb7e9b6 commit d4d5e60

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

readthedocs/settings/base.py

+18
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,24 @@ def USE_PROMOS(self): # noqa
370370
DOCKER_DEFAULT_VERSION = 'latest'
371371
DOCKER_IMAGE = '{}:{}'.format(DOCKER_DEFAULT_IMAGE, DOCKER_DEFAULT_VERSION)
372372
DOCKER_IMAGE_SETTINGS = {
373+
'readthedocs/build:2.0': {
374+
'python': {
375+
'supported_versions': [2, 2.7, 3, 3.5],
376+
'default_version': {
377+
2: 2.7,
378+
3: 3.5,
379+
},
380+
},
381+
},
382+
'readthedocs/build:3.0': {
383+
'python': {
384+
'supported_versions': [2, 2.7, 3, 3.3, 3.4, 3.5, 3.6],
385+
'default_version': {
386+
2: 2.7,
387+
3: 3.6,
388+
},
389+
},
390+
},
373391
'readthedocs/build:4.0': {
374392
'python': {
375393
'supported_versions': [2, 2.7, 3, 3.5, 3.6, 3.7],

0 commit comments

Comments
 (0)