Enable support of Python 3.15 #118
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: Editable build using pip and pre-release NumPy | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -el {0} | |
| strategy: | |
| matrix: | |
| python: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"] | |
| use_pre: ["", "--pre"] | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1 | |
| with: | |
| miniforge-version: latest | |
| # conda-forge/label/python_rc carries the 3.15 release candidate | |
| channels: conda-forge,conda-forge/label/python_rc | |
| activate-environment: test | |
| python-version: ${{ matrix.python }} | |
| - name: Install MKL | |
| run: | | |
| conda install mkl-devel | |
| - name: Build conda package | |
| run: | | |
| pip install --no-cache-dir meson-python ninja cmake cython | |
| pip install --no-cache-dir numpy ${{ matrix.use_pre }} | |
| pip install -e ".[test]" --no-build-isolation --verbose | |
| pip list | |
| python -m pytest -v mkl_fft/tests |