-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'topic/default/new-version-py3.13' into 'branch/default'
Prepare new version for Python 3.13 See merge request fluiddyn/fluidfft!70
- Loading branch information
Showing
9 changed files
with
5,552 additions
and
5,324 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,20 +11,22 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: ["windows-2022", "macos-latest"] | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.26.1 | ||
pixi-version: v0.35.0 | ||
cache: false | ||
- name: Install | ||
run: | | ||
pixi run install-editable | ||
pixi run pip install plugins/fluidfft-fftw -v --no-build-isolation --no-deps | ||
pixi run python -c "import fluidfft_fftw.fft2d as m; print(m)" | ||
ls .pixi/envs/default/Lib/site-packages/fluidfft_fftw/fft2d | ||
pixi run python -c "import fluidfft_fftw.fft2d.with_fftw1d" | ||
- name: Tests | ||
run: | | ||
pixi run pytest -v -s tests | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.9 | ||
FROM python:3.10 | ||
LABEL Pierre Augier <[email protected]> | ||
|
||
RUN apt-get update | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = 'mesonpy' | |
|
||
[project] | ||
name = "fluidfft" | ||
version = "0.4.2" | ||
version = "0.4.3" | ||
description = "Efficient and easy Fast Fourier Transform (FFT) for Python." | ||
authors = [ | ||
{name = "Pierre Augier", email = "[email protected]"}, | ||
|
@@ -15,7 +15,7 @@ dependencies = [ | |
"transonic >= 0.6.4", | ||
"importlib_metadata; python_version < '3.10'", | ||
] | ||
requires-python = ">= 3.9" | ||
requires-python = ">= 3.10" | ||
readme = "README.md" | ||
license = {text = "CeCILL License"} | ||
keywords = [ | ||
|
@@ -35,7 +35,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Scientific/Engineering", | ||
] | ||
|
||
|