ansys-pre-commit-hooks 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansys-pre-commit-hooks
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A Python wrapper to create Ansys-tailored pre-commit hooks
5
5
  Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
6
6
  Maintainer-email: "ANSYS, Inc." <pyansys.core@ansys.com>
@@ -18,8 +18,8 @@ Requires-Dist: reuse==3.0.2
18
18
  Requires-Dist: GitPython==3.1.43
19
19
  Requires-Dist: ansys-sphinx-theme[autoapi]==0.15.2 ; extra == "doc"
20
20
  Requires-Dist: numpydoc==1.7.0 ; extra == "doc"
21
- Requires-Dist: sphinx==7.2.6 ; extra == "doc"
22
- Requires-Dist: sphinx-autodoc-typehints==2.0.1 ; extra == "doc"
21
+ Requires-Dist: sphinx==7.3.7 ; extra == "doc"
22
+ Requires-Dist: sphinx-autodoc-typehints==2.1.0 ; extra == "doc"
23
23
  Requires-Dist: sphinx-copybutton==0.5.1 ; extra == "doc"
24
24
  Requires-Dist: pytest==8.1.1 ; extra == "tests"
25
25
  Requires-Dist: pytest-cov==5.0.0 ; extra == "tests"
@@ -116,7 +116,7 @@ Set custom arguments
116
116
  .. code:: yaml
117
117
 
118
118
  - repo: https://github.com/ansys/pre-commit-hooks
119
- rev: v0.3.0
119
+ rev: v0.3.1
120
120
  hooks:
121
121
  - id: add-license-headers
122
122
  args: ["--custom_copyright", "custom copyright phrase", "--custom_template", "template_name", "--custom_license", "license_name", "--ignore_license_check", "--start_year", "2023"]
@@ -161,7 +161,7 @@ the hook should run on, add the necessary regex to the ``files`` line in your
161
161
  .. code:: yaml
162
162
 
163
163
  - repo: https://github.com/ansys/pre-commit-hooks
164
- rev: v0.3.0
164
+ rev: v0.3.1
165
165
  hooks:
166
166
  - id: add-license-headers
167
167
  files: '(src|examples|tests|newFolder)/.*\.(py|newExtension)|\.(proto|newExtension)'
@@ -174,7 +174,7 @@ In .pre-commit-config.yaml:
174
174
  .. code:: yaml
175
175
 
176
176
  - repo: https://github.com/ansys/pre-commit-hooks
177
- rev: v0.3.0
177
+ rev: v0.3.1
178
178
  hooks:
179
179
  - id: add-license-headers
180
180
  exclude: |
@@ -84,7 +84,7 @@ Set custom arguments
84
84
  .. code:: yaml
85
85
 
86
86
  - repo: https://github.com/ansys/pre-commit-hooks
87
- rev: v0.3.0
87
+ rev: v0.3.1
88
88
  hooks:
89
89
  - id: add-license-headers
90
90
  args: ["--custom_copyright", "custom copyright phrase", "--custom_template", "template_name", "--custom_license", "license_name", "--ignore_license_check", "--start_year", "2023"]
@@ -129,7 +129,7 @@ the hook should run on, add the necessary regex to the ``files`` line in your
129
129
  .. code:: yaml
130
130
 
131
131
  - repo: https://github.com/ansys/pre-commit-hooks
132
- rev: v0.3.0
132
+ rev: v0.3.1
133
133
  hooks:
134
134
  - id: add-license-headers
135
135
  files: '(src|examples|tests|newFolder)/.*\.(py|newExtension)|\.(proto|newExtension)'
@@ -142,7 +142,7 @@ In .pre-commit-config.yaml:
142
142
  .. code:: yaml
143
143
 
144
144
  - repo: https://github.com/ansys/pre-commit-hooks
145
- rev: v0.3.0
145
+ rev: v0.3.1
146
146
  hooks:
147
147
  - id: add-license-headers
148
148
  exclude: |
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
5
5
  [project]
6
6
  # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
7
7
  name = "ansys-pre-commit-hooks"
8
- version = "0.3.0"
8
+ version = "0.3.1"
9
9
  description = "A Python wrapper to create Ansys-tailored pre-commit hooks"
10
10
  readme = "README.rst"
11
11
  requires-python = ">=3.9,<4"
@@ -40,8 +40,8 @@ tests = [
40
40
  doc = [
41
41
  "ansys-sphinx-theme[autoapi]==0.15.2",
42
42
  "numpydoc==1.7.0",
43
- "sphinx==7.2.6",
44
- "sphinx-autodoc-typehints==2.0.1",
43
+ "sphinx==7.3.7",
44
+ "sphinx-autodoc-typehints==2.1.0",
45
45
  "sphinx-copybutton==0.5.1",
46
46
  ]
47
47