Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ jobs:

: # Fix for petsc4py+slepc4py build
echo 'setuptools<81' > constraints.txt
echo 'Cython>=3.0,<3.2.4' >> constraints.txt
export PIP_CONSTRAINT=constraints.txt

if [ ${{ inputs.target_branch }} = 'release' ]; then
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
# TODO RELEASE
"fenics-ufl @ git+https://github.com/FEniCS/ufl.git@main",
# TODO RELEASE
"firedrake-fiat @ git+https://github.com/firedrakeproject/fiat.git@main",
"firedrake-fiat @ git+https://github.com/firedrakeproject/fiat.git@pbrubeck/bubble-lagrange",
"h5py>3.12.1",
"immutabledict",
"libsupermesh",
Expand Down Expand Up @@ -153,7 +153,7 @@ docker = [ # Used in firedrake-vanilla container

[build-system]
requires = [
"Cython>=3.0",
"Cython>=3.0,<3.2.4",
"libsupermesh",
"mpi4py>3; python_version >= '3.13'",
"mpi4py; python_version < '3.13'",
Expand Down
2 changes: 1 addition & 1 deletion requirements-build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Core build dependencies (adapted from pyproject.toml)
Cython>=3.0
Cython>=3.0,<3.2.4
libsupermesh
mpi4py>3; python_version >= '3.13'
mpi4py; python_version < '3.13'
Expand Down
Loading