Skip to content

Commit

Permalink
Update patch versions and add new ones for all supported languages (r…
Browse files Browse the repository at this point in the history
…eadthedocs#10217)

* 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.

* Apply suggestions from code review

* Update nodejs and golang patch versions

* Nodejs update 18 to the LTS version

* Add latest golang, rust and nodejs versions

* Typo

---------

Co-authored-by: Manuel Kaufmann <humitos@gmail.com>
  • Loading branch information
EwoutH and humitos authored Jun 25, 2023
1 parent 5508303 commit 418980d
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions readthedocs/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,32 +649,35 @@ 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.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.9',
'pypy3.9': 'pypy3.9-7.3.9',
'pypy3.8': 'pypy3.8-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',
},
'nodejs': {
'14': '14.20.1',
'16': '16.18.0',
'18': '18.11.0',
'19': '19.0.0',
'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.70': '1.70.0',
},
'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',
'1.20': '1.20.5',
},
},
}
Expand Down

0 comments on commit 418980d

Please sign in to comment.