Bump setuptools from 80.3.1 to 82.0.0 in /MPI #1594
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: readme_matlab | |
| defaults: | |
| run: | |
| shell: bash | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '0 13 * * 4' | |
| jobs: | |
| matlab: | |
| strategy: | |
| matrix: | |
| # https://www.mathworks.com/support/requirements/python-compatibility.html | |
| include: | |
| - matlab-version: "R2024b" | |
| python-version: "3.12" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: actions/setup-python@v5.3.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - run: pip install -e . | |
| - run: pip install pytest-codeblocks pytest | |
| - run: python -c "import pytest_codeblocks; code=pytest_codeblocks.extract_from_file('docs/markdown/pympdata_landing.md'); f=open('readme.m', 'w'); f.writelines(block.code for block in code if block.syntax=='Matlab'); f.close()" | |
| - run: cat readme.m | |
| - uses: matlab-actions/setup-matlab@v2.3.0 | |
| with: | |
| release: ${{ matrix.matlab-version }} | |
| cache: true | |
| - uses: matlab-actions/run-command@v2.1.1 | |
| with: | |
| command: pe=pyenv; assert(pe.Version == "${{ matrix.python-version }}"); | |
| - run: echo NUMBA_NUM_THREADS=1 >> $GITHUB_ENV | |
| - uses: matlab-actions/run-command@v2.1.1 | |
| with: | |
| command: readme |