Skip to content

Commit 546bf3d

Browse files
committed
Fixed wrongly quoted variable in jq pattern.
1 parent b04ceae commit 546bf3d

9 files changed

Lines changed: 17 additions & 20 deletions

.github/workflows/PublishReleaseNotes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ jobs:
549549
)" \
550550
'{"tag": $tag, "version": $version, "git-hash": $hash, "repository-url": $repo, "release-url": $release, "categories": $categories, "latest": $jsonLatest}' \
551551
)" \
552-
'{"version": "$structVersion", "timestamp": $date, "meta": $jsonMeta, "files": {}}'
552+
'{"version": $structVersion, "timestamp": $date, "meta": $jsonMeta, "files": {}}'
553553
)
554554
fi
555555

.github/workflows/_Checking_JobTemplates.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
1616
with:
1717
package_name: 'myPackage'
18-
python_version: '3.13' # workaround to use Sphinx in Python 3.13 for sphinx_reports not yet supporting lxml 6.0
19-
python_version_list: '3.10 3.11 3.12 3.13 3.14 pypy-3.10 pypy-3.11'
20-
disable_list: 'windows-arm:pypy-3.10 windows-arm:pypy-3.11'
18+
python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
19+
disable_list: 'windows-arm:pypy-3.11'
2120

2221
PlatformTestingParams:
2322
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev

.github/workflows/_Checking_NamespacePackage_Pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
package_namespace: 'myFramework'
1212
package_name: 'Extension'
13-
unittest_python_version: '3.13' # workaround to use Sphinx in Python 3.13 for sphinx_reports not yet supporting lxml 6.0
13+
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
1414
bandit: 'true'
1515
pylint: 'true'
1616
codecov: 'true'

.github/workflows/_Checking_SimplePackage_Pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
1010
with:
1111
package_name: 'myPackage'
12-
unittest_python_version: '3.13' # workaround to use Sphinx in Python 3.13 for sphinx_reports not yet supporting lxml 6.0
12+
unittest_python_version_list: '3.11 3.12 3.13 3.14 pypy-3.11'
1313
bandit: 'true'
1414
pylint: 'true'
1515
codecov: 'true'

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Example Pipelines
164164
.. code-block:: toml
165165
166166
[build-system]
167-
requires = ["setuptools >= 80.0", "wheel ~= 0.45", "pyTooling ~= 8.7"]
167+
requires = ["setuptools >= 80.0", "wheel ~= 0.45", "pyTooling ~= 8.8"]
168168
build-backend = "setuptools.build_meta"
169169
170170
[tool.mypy]

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r ../requirements.txt
22

3-
pyTooling ~= 8.7
3+
pyTooling ~= 8.8
44

55
# Enforce latest version on ReadTheDocs
66
sphinx ~= 8.2

pyproject.toml

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

@@ -38,23 +38,21 @@ junit_xml = "report/typing/StaticTypingSummary.xml"
3838
cobertura_xml_report = "report/typing"
3939

4040
[tool.pytest]
41-
junit_xml = "report/unit/UnittestReportSummary.xml"
42-
43-
[tool.pyedaa-reports]
44-
junit_xml = "report/unit/unittest.xml"
45-
46-
[tool.pytest.ini_options]
47-
addopts = "--tb=native"
41+
addopts = ["--tb=native"]
4842
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
4943
# derived from unittest.Testcase
50-
python_files = "*"
51-
python_functions = "test_*"
44+
python_files = ["*"]
45+
python_functions = ["test_*"]
5246
filterwarnings = [
5347
"error::DeprecationWarning",
5448
"error::PendingDeprecationWarning"
5549
]
50+
junit_xml = "report/unit/UnittestReportSummary.xml"
5651
junit_logging = "all"
5752

53+
[tool.pyedaa-reports]
54+
junit_xml = "report/unit/unittest.xml"
55+
5856
[tool.interrogate]
5957
color = true
6058
verbose = 1 # possible values: 0 (minimal output), 1 (-v), 2 (-vv)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyTooling ~= 8.7
1+
pyTooling ~= 8.8

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Coverage ~= 7.11
55

66
# Test Runner
7-
pytest ~= 8.4
7+
pytest ~= 9.0
88
pytest-cov ~= 7.0
99

1010
# Static Type Checking

0 commit comments

Comments
 (0)