mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-24 17:06:55 +08:00
v7.4.3
This commit is contained in:
2
.github/workflows/ApplicationTesting.yml
vendored
2
.github/workflows/ApplicationTesting.yml
vendored
@@ -248,7 +248,7 @@ jobs:
|
||||
if: matrix.system != 'msys2'
|
||||
run: |
|
||||
python -m pip install --disable-pip-version-check -U wheel
|
||||
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
|
||||
python -m pip install --disable-pip-version-check ${{ steps.requirements.outputs.requirements }}
|
||||
|
||||
- name: 🔧 Install pip dependencies (MSYS2)
|
||||
if: matrix.system == 'msys2'
|
||||
|
||||
29
.github/workflows/LaTeXDocumentation.yml
vendored
29
.github/workflows/LaTeXDocumentation.yml
vendored
@@ -42,6 +42,11 @@ on:
|
||||
required: false
|
||||
default: 'xelatex'
|
||||
type: string
|
||||
halt-on-error:
|
||||
description: 'Halt on first error, otherwise continue as long as possible.'
|
||||
required: false
|
||||
default: 'true'
|
||||
type: string
|
||||
pdf_artifact:
|
||||
description: 'Name of the PDF documentation artifact.'
|
||||
required: false
|
||||
@@ -58,29 +63,27 @@ jobs:
|
||||
name: 📓 Converting LaTeX Documentation to PDF
|
||||
runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}"
|
||||
continue-on-error: ${{ inputs.can-fail == 'true' }}
|
||||
container:
|
||||
image: pytooling/miktex:sphinx
|
||||
volumes:
|
||||
- ${{ github.workspace }}/latex:/latex
|
||||
steps:
|
||||
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
|
||||
uses: pyTooling/download-artifact@v7
|
||||
with:
|
||||
name: ${{ inputs.latex_artifact }}
|
||||
path: latex
|
||||
|
||||
# - name: Debug
|
||||
# run: |
|
||||
# tree -pash .
|
||||
investigate: 'true'
|
||||
|
||||
- name: Build LaTeX document using 'pytooling/miktex:sphinx'
|
||||
uses: addnab/docker-run-action@v3
|
||||
if: inputs.pdf_artifact != ''
|
||||
with:
|
||||
image: pytooling/miktex:sphinx
|
||||
options: -v ${{ github.workspace }}/latex:/latex --workdir /latex
|
||||
run: |
|
||||
# which ${{ inputs.processor }}
|
||||
# pwd
|
||||
# ls -lAh
|
||||
run: |
|
||||
if [[ "${{ inputs.halt-on-error }}" == "true" ]]; then
|
||||
HALT_ON_ERROR="--halt-on-error"
|
||||
fi
|
||||
|
||||
latexmk -${{ inputs.processor }} "${{ inputs.document }}.tex"
|
||||
cd latex
|
||||
latexmk --${{ inputs.processor }} --interaction=nonstopmode -file-line-error -max-print-line=250 ${HALT_ON_ERROR} "${{ inputs.document }}.tex"
|
||||
|
||||
- name: 📤 Upload 'PDF Documentation' artifact
|
||||
uses: pyTooling/upload-artifact@v6
|
||||
|
||||
@@ -164,12 +164,12 @@ Example Pipelines
|
||||
.. code-block:: toml
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools >= 80.0", "wheel ~= 0.45.0", "pyTooling ~= 8.11"]
|
||||
requires = ["setuptools >= 80.0", "pyTooling ~= 8.12"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.mypy]
|
||||
packages = ["myPackage"]
|
||||
python_version = "3.13"
|
||||
python_version = "3.14"
|
||||
strict = true
|
||||
pretty = true
|
||||
show_error_context = true
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
-r ../requirements.txt
|
||||
|
||||
pyTooling ~= 8.11
|
||||
pyTooling ~= 8.12
|
||||
|
||||
# Enforce latest version on ReadTheDocs
|
||||
sphinx ~= 9.1
|
||||
|
||||
@@ -36,7 +36,7 @@ __author__ = "Patrick Lehmann"
|
||||
__email__ = "Paebbels@gmail.com"
|
||||
__copyright__ = "2017-2026, Patrick Lehmann"
|
||||
__license__ = "Apache License, Version 2.0"
|
||||
__version__ = "7.4.2"
|
||||
__version__ = "7.4.3"
|
||||
__keywords__ = ["GitHub Actions"]
|
||||
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
[build-system]
|
||||
requires = [
|
||||
"setuptools >= 80.0",
|
||||
"wheel ~= 0.45.0",
|
||||
"pyTooling ~= 8.11"
|
||||
"pyTooling ~= 8.12"
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
@@ -26,7 +25,7 @@ variable-naming-style = "camelCase"
|
||||
|
||||
[tool.mypy]
|
||||
packages = ["myPackage", "myFramework.Extension"]
|
||||
python_version = "3.13"
|
||||
python_version = "3.14"
|
||||
strict = true
|
||||
pretty = true
|
||||
show_error_context = true
|
||||
|
||||
@@ -1 +1 @@
|
||||
pyTooling ~= 8.11
|
||||
pyTooling ~= 8.12
|
||||
|
||||
Reference in New Issue
Block a user