Skip to content

Commit 07be081

Browse files
committed
Merge branch 'main' into release/0.2
2 parents 0715560 + a87e558 commit 07be081

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/ci_cd.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,3 @@ jobs:
192192
with:
193193
cname: ${{ env.DOCUMENTATION_CNAME }}
194194
token: ${{ secrets.GITHUB_TOKEN }}
195-
python-version: ${{ env.MAIN_PYTHON_VERSION }}

doc/source/installer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ Two Python options for installation are available:
4141

4242
Regarding the available Python versions, users can select among the following ones:
4343

44-
* Python 3.7
4544
* Python 3.8
4645
* Python 3.9
4746
* Python 3.10
4847
* Python 3.11
48+
* Python 3.12
4949

5050
.. warning::
5151

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
66
name = "ansys-tools-installer"
77
description = "Python QT app or CLI for installing Python and PyAnsys."
88
readme = "README.rst"
9-
requires-python = ">=3.7,<4"
9+
requires-python = ">=3.8,<4"
1010
license = {file = "LICENSE"}
1111
authors = [
1212
{name = "Ansys, Inc.", email = "pyansys.core@ansys.com"},
@@ -28,11 +28,11 @@ classifiers = [
2828
"Topic :: Scientific/Engineering :: Information Analysis",
2929
"License :: OSI Approved :: MIT License",
3030
"Operating System :: Microsoft :: Windows",
31-
"Programming Language :: Python :: 3.7",
3231
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9",
3433
"Programming Language :: Python :: 3.10",
3534
"Programming Language :: Python :: 3.11",
35+
"Programming Language :: Python :: 3.12",
3636
]
3737
dynamic = ["version"]
3838

src/ansys/tools/installer/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,14 @@ def __init__(self, show=True):
179179
python_version.setLayout(python_version_layout)
180180

181181
self.python_version_select = QtWidgets.QComboBox()
182-
self.python_version_select.addItem("Python 3.7", "3.7.9")
183182
self.python_version_select.addItem("Python 3.8", "3.8.10")
184183
self.python_version_select.addItem("Python 3.9", "3.9.13")
185184
self.python_version_select.addItem("Python 3.10", "3.10.11")
186-
self.python_version_select.addItem("Python 3.11", "3.11.5")
185+
self.python_version_select.addItem("Python 3.11", "3.11.6")
186+
self.python_version_select.addItem("Python 3.12", "3.12.0")
187187

188188
# Set the default selection to "Python 3.10"
189-
default_index = self.python_version_select.findText("Python 3.10")
189+
default_index = self.python_version_select.findText("Python 3.11")
190190
self.python_version_select.setCurrentIndex(default_index)
191191
python_version_layout.addWidget(self.python_version_select)
192192

0 commit comments

Comments
 (0)