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 3812850 commit 383fc19Copy full SHA for 383fc19
.tools/envs/testenv-linux.yml
@@ -4,7 +4,7 @@ channels:
4
- conda-forge
5
- nodefaults
6
dependencies:
7
- - petsc4py
+ - petsc4py<=3.23.4
8
- jax
9
- cyipopt>=1.4.0 # dev, tests
10
- pygmo>=2.19.0 # dev, tests, docs
.tools/update_envs.py
@@ -29,7 +29,8 @@ def main() -> None:
29
## linux
30
test_env_linux = deepcopy(test_env)
31
test_env_linux.insert(_insert_idx, " - jax")
32
- test_env_linux.insert(_insert_idx, " - petsc4py")
+ # pinned petsc4py due to failing test on python 3.11 , revert later
33
+ test_env_linux.insert(_insert_idx, " - petsc4py<=3.23.4")
34
35
## test environment others
36
test_env_others = deepcopy(test_env)
0 commit comments