Skip to content

Commit

Permalink
Build: support Python 3.10.0 stable release
Browse files Browse the repository at this point in the history
Python 3.10.0 was released yesterday. This PR updates the version mapping to
point to that release and makes `python: 3` to point to 3.10 as well.
  • Loading branch information
humitos committed Oct 5, 2021
1 parent 813f964 commit 947d450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readthedocs/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def TEMPLATES(self):
'3.7': '3.7.12',
'3.8': '3.8.12',
'3.9': '3.9.7',
'3.10': '3.10.0rc2',
'3.10': '3.10.0',
'pypy3.7': 'pypy3.7-7.3.5',
'miniconda3-4.7': 'miniconda3-4.7.12',
'mambaforge-4.10': 'mambaforge-4.10.1-5',
Expand All @@ -565,7 +565,7 @@ def TEMPLATES(self):
},
}
# Always point to the latest stable release.
RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3'] = RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3.9']
RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3'] = RTD_DOCKER_BUILD_SETTINGS['tools']['python']['3.10']

def _get_docker_memory_limit(self):
try:
Expand Down

0 comments on commit 947d450

Please sign in to comment.