File tree 6 files changed +16
-15
lines changed
6 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 53
53
description : What version of DOLFINx are you running?
54
54
options :
55
55
- main branch
56
+ - 0.9.0
56
57
- 0.8.0
57
58
- 0.7.3
58
59
- 0.7.2
Original file line number Diff line number Diff line change 1
1
cff-version : 1.2.0
2
2
message : " If you use this software, please cite it as below."
3
3
title : " DOLFINx"
4
- version : 0.8 .0
5
- date-released : 2024-04-22
4
+ version : 0.9 .0
5
+ date-released : 2024-10-10
6
6
url : " https://github.com/FEniCS/dolfinx"
7
7
doi : " 10.5281/zenodo.10047760"
8
8
authors :
Original file line number Diff line number Diff line change @@ -107,10 +107,10 @@ UFL still runs on the year-based release scheme.
107
107
2 . In ` cpp/CMakeLists.txt ` change the version number e.g. ` 0.5.0 ` .
108
108
109
109
3 . In ` cpp/CMakeLists.txt ` change the version number in the
110
- ` find_package(ufcx) ` and ` find_package(UFCx ) ` calls.
110
+ ` find_package(ufcx) ` , ` find_package(UFCx) ` and ` find_package(Basix ) ` calls.
111
111
112
- 4 . In ` python/pyproject.toml ` update the version to e.g. ` 0.5.0 ` and
113
- update the dependency versions for ` fenics-ffcx ` and ` fenics-ufl ` .
112
+ 4 . In ` python/pyproject.toml ` update the version to e.g. ` 0.5.0 ` and update the
113
+ dependency versions for ` fenics-basix ` , ` fenics-ffcx ` and ` fenics-ufl ` .
114
114
115
115
5 . In ` CITATION.md ` update the version number ` version: 0.5.0 ` and the release
116
116
date ` date-released: 2022-03-14 ` .
Original file line number Diff line number Diff line change 8
8
9
9
# ------------------------------------------------------------------------------
10
10
# Set project name and version number
11
- project (DOLFINX VERSION "0.9 .0.0" )
11
+ project (DOLFINX VERSION "0.10 .0.0" )
12
12
13
13
set (DOXYGEN_DOLFINX_VERSION
14
14
${DOLFINX_VERSION}
@@ -349,7 +349,7 @@ if(DOLFINX_BASIX_PYTHON)
349
349
endif ()
350
350
endif ()
351
351
352
- find_package (Basix 0.8 REQUIRED CONFIG HINTS ${BASIX_PY_DIR} )
352
+ find_package (Basix 0.10 REQUIRED CONFIG HINTS ${BASIX_PY_DIR} )
353
353
set_package_properties(
354
354
basix PROPERTIES
355
355
TYPE REQUIRED
@@ -380,15 +380,15 @@ set_package_properties(
380
380
# which method UFCx was found.
381
381
if (NOT DOLFINX_UFCX_PYTHON)
382
382
# Check in CONFIG mode, i.e. look for installed ufcxConfig.cmake
383
- find_package (ufcx 0.9 REQUIRED CONFIG)
383
+ find_package (ufcx 0.10 REQUIRED CONFIG)
384
384
else ()
385
385
# Check in MODULE mode (using FindUFCX.cmake) using Python intepreter.
386
386
find_package (
387
387
Python3
388
388
COMPONENTS Interpreter
389
389
REQUIRED
390
390
)
391
- find_package (UFCx 0.9 REQUIRED MODULE)
391
+ find_package (UFCx 0.10 REQUIRED MODULE)
392
392
endif ()
393
393
394
394
set_package_properties(
Original file line number Diff line number Diff line change 1
1
nanobind>=2.0.0
2
- scikit-build-core[pyproject]>=0.5
2
+ scikit-build-core[pyproject]>=0.10
3
3
mpi4py
Original file line number Diff line number Diff line change 5
5
# list it here.
6
6
# pip install -r build-requirements.txt
7
7
[build-system ]
8
- requires = [" scikit-build-core[pyproject]>=0.5 " , " nanobind>=2.0.0" , " mpi4py" ]
8
+ requires = [" scikit-build-core[pyproject]>=0.10 " , " nanobind>=2.0.0" , " mpi4py" ]
9
9
build-backend = " scikit_build_core.build"
10
10
11
11
[project ]
12
12
name = " fenics-dolfinx"
13
- version = " 0.9 .0.dev0"
13
+ version = " 0.10 .0.dev0"
14
14
description = " DOLFINx Python interface"
15
15
readme = " ../README.md"
16
16
requires-python = " >=3.9.0"
@@ -23,9 +23,9 @@ dependencies = [
23
23
" numpy>=1.21" ,
24
24
" cffi<1.17" , # See https://github.com/FEniCS/dolfinx/issues/3340
25
25
" mpi4py" ,
26
- " fenics-basix>=0.9 .0.dev0,<0.10 .0" ,
27
- " fenics-ffcx>=0.9 .0.dev0,<0.10 .0" ,
28
- " fenics-ufl>=2024.2 .0.dev0,<2024.3 .0" ,
26
+ " fenics-basix>=0.10 .0.dev0,<0.11 .0" ,
27
+ " fenics-ffcx>=0.10 .0.dev0,<0.11 .0" ,
28
+ " fenics-ufl>=2024.3 .0.dev0,<2024.4 .0" ,
29
29
]
30
30
31
31
[project .optional-dependencies ]
You can’t perform that action at this time.
0 commit comments