Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Update version number
if: startsWith(github.ref, 'refs/tags/')
run: sed -i -e "s/0.0.0/${GITHUB_REF##*/}/" pyproject.toml
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Check isort, black, and flake8
Expand Down Expand Up @@ -54,21 +54,21 @@ jobs:
run: poetry build
- name: Upload dist artifact
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist-${{ matrix.python-version }}
path: dist
if-no-files-found: error
- name: Upload coverage HTML artifact
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-${{ matrix.python-version }}
path: htmlcov
if-no-files-found: error
- name: Upload Sphinx documentation
if: ${{ matrix.python-version == vars.ARCALOT_PYTHON_VERSION }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: documentation
path: docs/build/html
Expand All @@ -81,9 +81,9 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: dist-${{ vars.ARCALOT_PYTHON_VERSION }}
path: dist
Expand Down
30 changes: 15 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ python = "^3.12"
arcaflow-plugin-sdk = "^0.14.1"
kubernetes = ">=25.3.0"
PyYAML = "^6.0.1"
pylint = "^3.0.0"
pylint = "^4.0.0"
coverage = "^7.2.1"
html2text = "^2025.0.0"
sphinxcontrib-apidoc= "^0.5.0"
sphinxcontrib-apidoc= "^0.6.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down