Skip to content

Commit d098dbd

Browse files
authored
Build tools: upgrade all versions (#9692)
This commit matches and requires readthedocs/readthedocs-docker-images#187 It upgrades all the `build.tools` versions to their latest. Also, since Python 3.11 was released yesterday, now the `build.tools.python: "3"` will point to 3.11.
1 parent fa81ddd commit d098dbd

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

readthedocs/settings/base.py

+14-11
Original file line numberDiff line numberDiff line change
@@ -612,34 +612,37 @@ def TEMPLATES(self):
612612
'python': {
613613
'2.7': '2.7.18',
614614
'3.6': '3.6.15',
615-
'3.7': '3.7.13',
616-
'3.8': '3.8.13',
617-
'3.9': '3.9.13',
618-
'3.10': '3.10.4',
619-
'3.11': '3.11.0b3',
615+
'3.7': '3.7.15',
616+
'3.8': '3.8.15',
617+
'3.9': '3.9.15',
618+
'3.10': '3.10.8',
619+
'3.11': '3.11.0',
620620
'pypy3.7': 'pypy3.7-7.3.9',
621621
'pypy3.8': 'pypy3.8-7.3.9',
622622
'pypy3.9': 'pypy3.9-7.3.9',
623623
'miniconda3-4.7': 'miniconda3-4.7.12',
624624
'mambaforge-4.10': 'mambaforge-4.10.3-10',
625625
},
626626
'nodejs': {
627-
'14': '14.19.3',
628-
'16': '16.15.0',
629-
'18': '18.2.0',
627+
'14': '14.20.1',
628+
'16': '16.18.0',
629+
'18': '18.11.0',
630+
'19': '19.0.0',
630631
},
631632
'rust': {
632633
'1.55': '1.55.0',
633634
'1.61': '1.61.0',
635+
'1.64': '1.64.0',
634636
},
635637
'golang': {
636-
'1.17': '1.17.10',
637-
'1.18': '1.18.2',
638+
'1.17': '1.17.13',
639+
'1.18': '1.18.7',
640+
'1.19': '1.19.2',
638641
},
639642
},
640643
}
641644
# Always point to the latest stable release.
642-
RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3'] = RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3.10']
645+
RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3'] = RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3.11']
643646

644647
def _get_docker_memory_limit(self):
645648
try:

0 commit comments

Comments
 (0)