Skip to content

Commit 80f587f

Browse files
committed
Merge branch 'main' into release/0.2
2 parents ff76107 + 138b601 commit 80f587f

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ repos:
1313
- --line-length=88
1414

1515
- repo: https://github.com/psf/black
16-
rev: 23.9.1
16+
rev: 23.11.0
1717
hooks:
1818
- id: black
1919
args:
2020
- --line-length=88
2121

2222
- repo: https://github.com/keewis/blackdoc
23-
rev: v0.3.8
23+
rev: v0.3.9
2424
hooks:
2525
- id: blackdoc
2626
files: '\.py$'
@@ -31,7 +31,7 @@ repos:
3131
- id: flake8
3232

3333
- repo: https://github.com/codespell-project/codespell
34-
rev: v2.2.5
34+
rev: v2.2.6
3535
hooks:
3636
- id: codespell
3737
args: ["--toml", "pyproject.toml"]
@@ -45,7 +45,7 @@ repos:
4545
exclude: "tests/"
4646

4747
- repo: https://github.com/pre-commit/pre-commit-hooks
48-
rev: v4.4.0
48+
rev: v4.5.0
4949
hooks:
5050
- id: check-merge-conflict
5151
- id: debug-statements
@@ -54,6 +54,6 @@ repos:
5454

5555
# this validates our github workflow files
5656
- repo: https://github.com/python-jsonschema/check-jsonschema
57-
rev: 0.26.3
57+
rev: 0.27.1
5858
hooks:
5959
- id: check-github-workflows

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,29 +39,29 @@ dynamic = ["version"]
3939

4040
[project.optional-dependencies]
4141
tests = [
42-
"packaging==23.1",
43-
"PyGithub==1.59.1",
42+
"packaging==23.2",
43+
"PyGithub==2.1.1",
4444
"appdirs==1.4.4",
4545
"requests==2.31.0",
46-
"PySide6==6.5.2",
47-
"ansys-tools-path==0.3.1",
48-
"pytest==7.4.2",
46+
"PySide6==6.6.0",
47+
"ansys-tools-path==0.3.2",
48+
"pytest==7.4.3",
4949
"pytest-cov==4.1.0",
5050
"pytest-qt==4.2.0",
5151
]
5252
doc = [
5353
"Sphinx==7.2.6",
54-
"ansys-sphinx-theme==0.11.2",
54+
"ansys-sphinx-theme==0.12.5",
5555
"sphinx-copybutton==0.5.2",
5656
]
5757
freeze = [
58-
"pyinstaller==6.0.0",
59-
"packaging==23.1",
60-
"PyGithub==1.59.1",
58+
"pyinstaller==6.2.0",
59+
"packaging==23.2",
60+
"PyGithub==2.1.1",
6161
"appdirs==1.4.4",
6262
"requests==2.31.0",
63-
"PySide6==6.5.2",
64-
"ansys-tools-path==0.3.1",
63+
"PySide6==6.6.0",
64+
"ansys-tools-path==0.3.2",
6565
]
6666

6767
[tool.flit.module]

src/ansys/tools/installer/constants.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
PYANSYS_DOCS_SITES = {
7070
"PyAnsys": "https://docs.pyansys.com",
7171
"PyAnsys Developer docs": "https://dev.docs.pyansys.com",
72+
"PyAdditive": "https://additive.docs.pyansys.com",
7273
"PyAEDT": "https://aedt.docs.pyansys.com",
7374
"PyAnsys Geometry": "https://geometry.docs.pyansys.com",
7475
"PyAnsys Math": "https://math.docs.pyansys.com",
@@ -105,6 +106,7 @@
105106

106107
PYANSYS_LIBS = {
107108
"PyAnsys-Metapackage": "pyansys",
109+
"PyAdditive": "ansys-additive-core",
108110
"PyAEDT": "pyaedt",
109111
"PyAnsys Geometry": "ansys-geometry-core",
110112
"PyAnsys Math": "ansys-math-core",

src/ansys/tools/installer/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def _download(self, url, filename, when_finished=None, auth=None):
493493
"""Download a file with a progress bar.
494494
495495
Checks cache first. If cached file exists and is the same size
496-
as the file to be downloade, uses cached file.
496+
as the file to be downloaded, uses cached file.
497497
498498
``when_finished`` must accept one parameter, the path of the file downloaded.
499499

0 commit comments

Comments
 (0)