{
compil_script: "meshio-5.3.5.bat"
archive_info : {archive_name : "meshio-5.3.5.tar.gz"}
- patches : ['meshio-5.3.5.p01.gmsh_ansys.patch']
+ patches : ['meshio-5.3.5.p01.gmsh_ansys.patch', 'meshio-5.3.5.p02.nastran_fID_1512.patch']
properties :
{
incremental : "yes"
--- /dev/null
+--- meshio-5.3.5_ref/src/meshio/nastran/_nastran.py 2024-01-31 16:09:01.000000000 +0100
++++ meshio-5.3.5_dev/src/meshio/nastran/_nastran.py 2024-09-30 15:59:26.751404661 +0200
+@@ -410,7 +410,7 @@
+ -0.1234 --> "-1.234E-1"
+ 3.1415926535897932 --> "3.14159265359E+0"
+ """
+- out = np.format_float_scientific(value, exp_digits=1, precision=11).replace(
++ out = np.format_float_scientific(value, exp_digits=1, precision=9).replace(
+ "e", "E"
+ )
+ assert len(out) <= 16