Skip to content

Commit 46d89c1

Browse files
authored
feat: update versions for miniforge and Python 3.11 (#156)
1 parent 1908ea8 commit 46d89c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ansys/tools/installer/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def __init__(self, show=True):
183183
self.python_version_select.addItem("Python 3.8", "3.8.10")
184184
self.python_version_select.addItem("Python 3.9", "3.9.13")
185185
self.python_version_select.addItem("Python 3.10", "3.10.11")
186-
self.python_version_select.addItem("Python 3.11", "3.11.3")
186+
self.python_version_select.addItem("Python 3.11", "3.11.5")
187187

188188
# Set the default selection to "Python 3.10"
189189
default_index = self.python_version_select.findText("Python 3.10")
@@ -469,8 +469,8 @@ def download_and_install(self):
469469
filename = f"python-{selected_version}-amd64.exe"
470470
LOG.info("Installing vanilla Python %s", selected_version)
471471
else:
472-
url = "https://github.com/conda-forge/miniforge/releases/download/22.11.1-4/Miniforge3-22.11.1-4-Windows-x86_64.exe"
473-
filename = "Miniforge3-22.11.1-4-Windows-x86_64.exe"
472+
url = "https://github.com/conda-forge/miniforge/releases/download/23.1.0-4/Miniforge3-23.1.0-4-Windows-x86_64.exe"
473+
filename = "Miniforge3-23.1.0-4-Windows-x86_64.exe"
474474
LOG.info("Installing miniconda from %s", url)
475475

476476
try:

0 commit comments

Comments
 (0)