Skip to content

Commit f42f10c

Browse files
committed
Add cxx-compiler on Linux and m2w64-gcc on Windows
1 parent 3453151 commit f42f10c

File tree

3 files changed

+732
-429
lines changed

3 files changed

+732
-429
lines changed

.github/workflows/ci-pixi.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,22 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: ["windows-2022", "macos-latest"]
14-
python-version: ["3.10", "3.11", "3.12", "3.13"]
1514
defaults:
1615
run:
1716
shell: bash -l {0}
1817
steps:
1918
- uses: actions/checkout@v3
2019
- uses: prefix-dev/[email protected]
2120
with:
22-
pixi-version: v0.33.0
21+
pixi-version: v0.35.0
2322
cache: false
2423
- name: Install
2524
run: |
2625
pixi run install-editable
2726
pixi run pip install plugins/fluidfft-fftw -v --no-build-isolation --no-deps
27+
pixi run python -c "import fluidfft_fftw.fft2d as m; print(m)"
28+
ls .pixi/envs/default/Lib/site-packages/fluidfft_fftw/fft2d
2829
pixi run python -c "import fluidfft_fftw.fft2d.with_fftw1d"
29-
pixi run python -c "import fluidfft_fftw.fft2d.with_fftw2d"
30-
pixi run python -c "import fluidfft_fftw.fft3d.with_fftw3d"
3130
- name: Tests
3231
run: |
3332
pixi run pytest -v -s tests

0 commit comments

Comments
 (0)