Skip to content

Commit 0cf0a4d

Browse files
authored
v0.4.1
2 parents 921e3e5 + e378387 commit 0cf0a4d

File tree

13 files changed

+83
-59
lines changed

13 files changed

+83
-59
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* @Paebbels
2+
3+
/.github/ @Paebbels

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ updates:
88
prefix: "[Dependabot]"
99
labels:
1010
- Dependencies
11-
reviewers:
12-
- Paebbels
1311
schedule:
1412
interval: "daily" # Checks on Monday trough Friday.
1513

@@ -21,7 +19,5 @@ updates:
2119
prefix: "[Dependabot]"
2220
labels:
2321
- Dependencies
24-
reviewers:
25-
- Paebbels
2622
schedule:
2723
interval: "weekly"

.github/workflows/Pipeline.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@ on:
99

1010
jobs:
1111
Pipeline:
12-
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
12+
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
1313
with:
14-
package_namespace: pyEDAA
15-
package_name: ToolSetup
16-
codecov: true
17-
codacy: true
18-
dorny: true
14+
package_namespace: 'pyEDAA'
15+
package_name: 'ToolSetup'
16+
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
17+
bandit: 'true'
18+
pylint: 'false'
19+
codecov: 'true'
20+
codacy: 'true'
21+
dorny: 'true'
1922
secrets:
2023
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
2124
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.idea/pyEDAA.ToolSetup.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
wheel ~= 0.45
2-
twine ~= 6.1
2+
twine ~= 6.2

doc/Dependency.rst

Lines changed: 12 additions & 12 deletions
Large diffs are not rendered by default.

doc/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pushd %~dp0
55
REM Command file for Sphinx documentation
66

77
if "%SPHINXBUILD%" == "" (
8-
set SPHINXBUILD=py -3.13 -m sphinx.cmd.build
8+
set SPHINXBUILD=py -3.14 -m sphinx.cmd.build
99
)
1010
set SOURCEDIR=.
1111
set BUILDDIR=_build

doc/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sphinx_rtd_theme ~= 3.0
1111
# Sphinx Extenstions
1212
sphinxcontrib-mermaid ~= 1.0
1313
autoapi >= 2.0.1
14-
sphinx_design ~= 0.6.1
15-
sphinx-copybutton >= 0.5.2
16-
sphinx_autodoc_typehints ~= 3.2
14+
sphinx_design ~= 0.6
15+
sphinx-copybutton >= 0.5
16+
sphinx_autodoc_typehints ~= 3.5
1717
sphinx_reports ~= 0.9

pyEDAA/ToolSetup/py.typed

Whitespace-only changes.

pyproject.toml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,30 @@
22
requires = [
33
"setuptools >= 80.0",
44
"wheel ~= 0.45",
5-
"pyTooling ~= 8.4"
5+
"pyTooling ~= 8.7"
66
]
77
build-backend = "setuptools.build_meta"
88

9-
[tool.black]
10-
line-length = 120
9+
[tool.pylint.format]
10+
indent-string="\t"
11+
max-line-length = 120
12+
ignore-long-lines = "^.{0,110}#: .*"
13+
14+
[tool.pylint.basic]
15+
argument-naming-style = "camelCase"
16+
attr-naming-style = "camelCase"
17+
class-attribute-naming-style = "camelCase"
18+
class-const-naming-style = "UPPER_CASE"
19+
class-naming-style = "PascalCase"
20+
const-naming-style = "UPPER_CASE"
21+
function-naming-style = "camelCase"
22+
inlinevar-naming-style = "camelCase"
23+
method-naming-style = "PascalCase"
24+
module-naming-style = "any"
25+
variable-naming-style = "camelCase"
1126

1227
[tool.mypy]
13-
files = ["pyEDAA.ToolSetup"]
28+
packages = ["pyEDAA.ToolSetup"]
1429
python_version = "3.13"
1530
#ignore_missing_imports = true
1631
strict = true

0 commit comments

Comments
 (0)