We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4afb19e commit 9d97641Copy full SHA for 9d97641
.github/workflows/release.yml
@@ -121,8 +121,13 @@ jobs:
121
run: |
122
export PETSC_DIR=/home/runner/work/ngsPETSc/petsc
123
export PETSC_ARCH=arch-linux-c-opt
124
- pip install ../petsc/src/binding/petsc4py
+ # Hopefully this song and dance goes away after petsc4py release 3.22.2
125
+ poetry remove petsc4py
126
poetry install --sync --no-interaction
127
+ poetry add ../petsc/src/binding/petsc4py
128
+ sed -i -E "s/petsc4py = (\{.+\})/petsc4py = \"^3.22.1\"/" pyproject.toml
129
+ # Replace when fixed with:
130
+ # poetry install --sync --no-interaction
131
132
- name: Build source and wheel distribution
133
0 commit comments