Peter Hill

Results 151 issues of Peter Hill

From a quick read of the source, the PETSc time solver just switches between Adams-Moulton or BDF via SUNDIALS (specifically a "very old version" of CVODE according to the docs),...

This time: ``` Problem: conflicting requests - nothing provides python3.13dist(natsort) needed by python3-boutdata-0.2.1-8.fc42.noarch from rawhide - nothing provides python(abi) = 3.13 needed by python3-boutdata-0.2.1-8.fc42.noarch from rawhide - nothing provides python3.13dist(numpy)...

The big coordinates refactor, #2873, is basically ready and is going to break most things (we have an automatic updater in `boutdata` to ease the transition!), and we've got a...

This bit of code: https://github.com/boutproject/BOUT-dev/blob/51e53f80fac4a40cd63e961ae9223e348c437b99/src/mesh/coordinates.cxx#L1499-L1510 L1506 is missing the division by `dy` -- does anyone know if this is deliberate, and if so, why?

bug

Mostly: - include required headers - rename some short identifiers - make some local variables `const` - in a few cases, this involved renaming them to avoid reuse of the...

``` 2/8 Test #53: MMS-spatial-fci ..................***Failed 1.34 sec /home/test/BOUT-dev/build/tests/MMS/spatial/fci/runtest:167: SyntaxWarning: invalid escape sequence '\i' label="{} $l_\inf$".format(method_orders[nslice]["name"]), Making FCI MMS test starting Bfield stuff done Bfield stuff Traceback (most recent call...

Subject: Allow `autosummary` to create pages for classes, functions, and so on ### Feature or Bugfix - Feature ### Purpose As detailed in #7912 and linked issues, `autosummary` is very...

Building current master (925234) with gcc 14.2.1 gives me a bunch of warnings about "reading/writing 128 bytes from a region of size 16": ``` In file included from /usr/include/c++/14/string:51, from...

The following minimal example fails: ```python import netCDF4 import numpy as np with netCDF4.Dataset("test_dim_autocomplex.nc", "w", auto_complex=True) as f: f.createDimension("x", size=2) f.createDimension("complex", size=2) c_dim = f.createVariable("data_dim", np.float64, ("x", "complex")) c_dim[:] =...

The docs for [`target` based test specific dependencies](https://pkgdocs.julialang.org/v1/creating-packages/#target-based-test-specific-dependencies) don't mention that this only works when running `]test` from the REPL, and doesn't work on the command line. It's not clear...