From 587a04b5f49cb872bc58d562dde35911eae7cd69 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Mon, 3 Apr 2023 20:27:00 +0200 Subject: [PATCH 1/6] base.py: Update Python patch versions Update the Python patch versions of CPython 3.7 to 3.11 and PyPy 3.8 and 3.9 to their latest versions. --- readthedocs/settings/base.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index 2d0dd75e0a5..850980579aa 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -622,14 +622,14 @@ def TEMPLATES(self): 'python': { '2.7': '2.7.18', '3.6': '3.6.15', - '3.7': '3.7.15', - '3.8': '3.8.15', - '3.9': '3.9.15', - '3.10': '3.10.8', - '3.11': '3.11.0', + '3.7': '3.7.16', + '3.8': '3.8.16', + '3.9': '3.9.16', + '3.10': '3.10.10', + '3.11': '3.11.2', 'pypy3.7': 'pypy3.7-7.3.9', - 'pypy3.8': 'pypy3.8-7.3.9', - 'pypy3.9': 'pypy3.9-7.3.9', + 'pypy3.8': 'pypy3.8-7.3.11', + 'pypy3.9': 'pypy3.9-7.3.11', 'miniconda3-4.7': 'miniconda3-4.7.12', 'mambaforge-4.10': 'mambaforge-4.10.3-10', }, From 7ab887a03b1ace7c183caeeea969352632a36ade Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Sun, 25 Jun 2023 21:30:07 +0200 Subject: [PATCH 2/6] Apply suggestions from code review --- readthedocs/settings/base.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index 850980579aa..17f11cc037d 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -622,14 +622,14 @@ def TEMPLATES(self): 'python': { '2.7': '2.7.18', '3.6': '3.6.15', - '3.7': '3.7.16', - '3.8': '3.8.16', - '3.9': '3.9.16', - '3.10': '3.10.10', - '3.11': '3.11.2', + '3.7': '3.7.17', + '3.8': '3.8.17', + '3.9': '3.9.17', + '3.10': '3.10.12', + '3.11': '3.11.4', 'pypy3.7': 'pypy3.7-7.3.9', 'pypy3.8': 'pypy3.8-7.3.11', - 'pypy3.9': 'pypy3.9-7.3.11', + 'pypy3.9': 'pypy3.9-7.3.12', 'miniconda3-4.7': 'miniconda3-4.7.12', 'mambaforge-4.10': 'mambaforge-4.10.3-10', }, From 2a4efd6fa861de000199b458e305cc70e7ecd476 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Sun, 25 Jun 2023 21:35:29 +0200 Subject: [PATCH 3/6] Update nodejs and golang patch versions --- readthedocs/settings/base.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index 17f11cc037d..b7c2b33a9f8 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -635,9 +635,9 @@ def TEMPLATES(self): }, 'nodejs': { '14': '14.20.1', - '16': '16.18.0', + '16': '16.18.1', '18': '18.11.0', - '19': '19.0.0', + '19': '19.0.1', }, 'rust': { '1.55': '1.55.0', @@ -646,8 +646,8 @@ def TEMPLATES(self): }, 'golang': { '1.17': '1.17.13', - '1.18': '1.18.7', - '1.19': '1.19.2', + '1.18': '1.18.10', + '1.19': '1.19.10', }, }, } From 4995e003eaed53e81718712409cb9b10e6768db2 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Sun, 25 Jun 2023 21:36:11 +0200 Subject: [PATCH 4/6] Nodejs update 18 to the LTS version --- readthedocs/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index b7c2b33a9f8..ddccf732a85 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -636,7 +636,7 @@ def TEMPLATES(self): 'nodejs': { '14': '14.20.1', '16': '16.18.1', - '18': '18.11.0', + '18': '18.16.1', # LTS '19': '19.0.1', }, 'rust': { From f6e178bc6e7a7f0c7ca3f07e6e0406a77bb4c964 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Sun, 25 Jun 2023 21:37:18 +0200 Subject: [PATCH 5/6] Add latest golang, rust and nodejs versions --- readthedocs/settings/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index ddccf732a85..b589d4bcc1b 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -638,16 +638,19 @@ def TEMPLATES(self): '16': '16.18.1', '18': '18.16.1', # LTS '19': '19.0.1', + '20': '20.3.1', }, 'rust': { '1.55': '1.55.0', '1.61': '1.61.0', '1.64': '1.64.0', + '1.17': '1.70.0', }, 'golang': { '1.17': '1.17.13', '1.18': '1.18.10', '1.19': '1.19.10', + '1.20': '1.20.5', }, }, } From 1f13f355985e4643e868785d4b6ba12ff1b759a6 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Sun, 25 Jun 2023 21:42:51 +0200 Subject: [PATCH 6/6] Typo --- readthedocs/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/settings/base.py b/readthedocs/settings/base.py index b589d4bcc1b..c07aab2ea1c 100644 --- a/readthedocs/settings/base.py +++ b/readthedocs/settings/base.py @@ -644,7 +644,7 @@ def TEMPLATES(self): '1.55': '1.55.0', '1.61': '1.61.0', '1.64': '1.64.0', - '1.17': '1.70.0', + '1.70': '1.70.0', }, 'golang': { '1.17': '1.17.13',