-
Notifications
You must be signed in to change notification settings - Fork 8
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/release-for-py3.13' into 'branch/default'
Release for py3.13 See merge request fluiddyn/fluidsim!398
- Loading branch information
Showing
9 changed files
with
3,149 additions
and
3,071 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 |
---|---|---|
|
@@ -10,15 +10,12 @@ jobs: | |
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
matrix: | ||
python-version: ["3.10", "3.12"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.27.1 | ||
pixi-version: v0.35.0 | ||
cache: false | ||
- name: Tests | ||
run: | | ||
|
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 | ||
|
@@ -60,4 +60,4 @@ RUN wget https://foss.heptapod.net/fluiddyn/fluidfft/raw/branch/default/doc/inst | |
RUN chmod +x install_pfft.sh | ||
RUN ./install_pfft.sh | ||
|
||
RUN python -m pip install -U pip pdm==2.15.4 nox --user | ||
RUN python -m pip install -U pip pdm nox --user |
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 |
---|---|---|
|
@@ -18,8 +18,8 @@ keywords = [ | |
authors = [ | ||
{name = "pierre.augier", email = "[email protected]"}, | ||
] | ||
version = '0.8.3' | ||
requires-python = ">=3.9" | ||
version = '0.8.4' | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"fluidsim-core>=0.8.1", | ||
"h5py", | ||
|
@@ -40,10 +40,10 @@ classifiers = [ | |
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
] | ||
readme = "README.md" | ||
license = {text = "CECILL-2.1"} | ||
|
@@ -137,7 +137,7 @@ ignore_package_warnings = ["ipython"] | |
# because meson-python editable build needs the build dependencies | ||
build = [ | ||
"meson-python", | ||
"numpy", | ||
"numpy>=2.0.0", | ||
# "transonic@hg+https://foss.heptapod.net/fluiddyn/transonic@default", | ||
"transonic>=0.6.2", | ||
"pythran>=0.9.7", | ||
|
@@ -159,8 +159,9 @@ dev = [ | |
"pylint", | ||
"flit_core >=3.2,<4", | ||
"-e fluidsim-core @ file:///${PROJECT_ROOT}/lib", | ||
# build dependency mpi4py | ||
# build dependencies mpi4py | ||
"cython >=3.0", | ||
"setuptools", | ||
] | ||
|
||
[tool.pdm.scripts] | ||
|