Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Create environment using micromamba
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
uses: mamba-org/setup-micromamba@v2
with:
environment-file: doc/environment.yml
environment-name: pyart-docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

# Install dependencies
- name: Setup Conda Environment
uses: mamba-org/setup-micromamba@v1.9.0
uses: mamba-org/setup-micromamba@v2
with:
environment-file: continuous_integration/environment-ci.yml
micromamba-version: '2.0.0-0'
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
python -m pytest -v --cov=./ --cov-report=xml

- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v4.5.0
uses: codecov/codecov-action@v4.6.0
with:
file: ./coverage.xml
flags: unittests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
strategy:
matrix:
os: [
ubuntu-20.04,
windows-2019,
ubuntu-latest,
windows-latest,
macos-14,
macos-13,
]
Expand All @@ -45,7 +45,7 @@ jobs:
git fetch --prune --unshallow

- name: Build wheels for CPython
uses: pypa/cibuildwheel@v2.21.1
uses: pypa/cibuildwheel@v2.21.3
with:
output-dir: dist
env:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
merge-multiple: true

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.10.2
uses: pypa/gh-action-pypi-publish@v1.10.3
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}