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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
submodules: true

- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5.4.0
with:
python-version: "3.11"
cache: "pip"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4.2.2
- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5.4.0
- name: install clang-format
run: |
pip install clang-format==6.0.1
Expand Down Expand Up @@ -44,13 +44,13 @@ jobs:

- name: Cache conda and dependencies
id: cache
uses: actions/cache@v4.2.0
uses: actions/cache@v4.2.2
with:
path: ${{ env.CONDA }}/envs
key: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.python}}-conda-v2-${{ hashFiles('requirements/CI-tests-conda/requirements.txt') }}-${{ hashFiles('requirements/CI-tests-pip/requirements.txt') }}

- name: Install Conda
uses: conda-incubator/setup-miniconda@v3.1.0
uses: conda-incubator/setup-miniconda@v3.1.1
if: steps.cache.outputs.cache-hit != 'true'
with:
activate-environment: anaconda-client-env
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
submodules: true
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install deps
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
delocate-wheel -v dist/msprime-*arm64.whl
delocate-wheel -v dist/msprime-*x86_64.whl
- name: Upload Wheels
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.1
with:
name: osx-wheel-${{ matrix.python }}
path: dist
Expand All @@ -64,7 +64,7 @@ jobs:
with:
submodules: true
- name: Set up Python 3.9
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: 3.9
- name: Build sdist
Expand All @@ -73,7 +73,7 @@ jobs:
pip install --upgrade pip build
python -m build --sdist
- name: Upload sdist
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.1
with:
name: sdist
path: dist
Expand All @@ -83,7 +83,7 @@ jobs:
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash .github/workflows/docker/buildwheel.sh

- name: Upload Wheels
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.1
with:
name: linux-wheels
path: dist/wheelhouse
Expand All @@ -96,11 +96,11 @@ jobs:
python: [3.9, "3.10", 3.11, 3.12]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
with:
name: osx-wheel-${{ matrix.python }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install wheel and test
Expand All @@ -122,11 +122,11 @@ jobs:
python: [3.9, "3.10", 3.11, 3.12]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
with:
name: linux-wheels
- name: Set up Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install wheel and test
Expand All @@ -150,16 +150,16 @@ jobs:
id-token: write
steps:
- name: Download all
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
- name: Move to dist
run: |
mkdir dist
cp */*.{whl,gz} dist/.
- name: Publish distribution to Test PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.12.3
uses: pypa/gh-action-pypi-publish@v1.12.4
with:
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution to PRODUCTION PyPI
if: github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@v1.12.3
uses: pypa/gh-action-pypi-publish@v1.12.4
Loading