Skip to content
Merged
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-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
# upload to Test PyPI for every commit on main branch
# and check for the SciTools repo
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository-owner == 'SciTools'
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'SciTools'
steps:
- uses: actions/download-artifact@v3
with:
Expand All @@ -153,7 +153,7 @@ jobs:
name: "publish to pypi"
runs-on: ubuntu-latest
# upload to PyPI for every tag starting with 'v'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && github.repository-owner == 'SciTools'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && github.repository_owner == 'SciTools'
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
5 changes: 3 additions & 2 deletions docs/src/whatsnew/3.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@ This document explains the changes made to Iris for this release
#. `@lbdreyer`_ removed the Iris TestRunner. Tests are now run via nox or
pytest. (:pull:`5205`)

#. `@agriyakhetarpal`_ prevented the GitHub action for publishing releases to
PyPI from running in forks. (:pull:`5220`)
#. `@agriyakhetarpal`_ and `@trexfeathers`_ prevented the GitHub action for
publishing releases to PyPI from running in forks.
(:pull:`5220`, :pull:`5248`)

#. `@trexfeathers`_ moved the benchmark runner conveniences from ``noxfile.py``
to a dedicated ``benchmarks/bm_runner.py``. (:pull:`5215`)
Expand Down