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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pythia-datasets
Expand All @@ -52,7 +52,7 @@ jobs:
python -m pytest --cov=./ --cov-report=xml --verbose

- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v5.4.3
uses: codecov/codecov-action@v5.5.2
with:
files: ./coverage.xml
flags: unittests
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'ProjectPythia/pythia-datasets'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: 3.11
Expand All @@ -38,7 +38,7 @@ jobs:
else
echo "✅ Looks good"
fi
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: releases
path: dist
Expand All @@ -47,11 +47,11 @@ jobs:
needs: build-artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: 3.11
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: releases
path: dist
Expand All @@ -65,12 +65,12 @@ jobs:
if: github.event_name == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: releases
path: dist
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@v1.12.4
uses: pypa/gh-action-pypi-publish@v1.13.0
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
Expand Down
Loading