Compiling plumed.pyx because it changed.
[1/1] Cythonizing plumed.pyx
Error compiling Cython file:
------------------------------------------------------------
...
cdef char* ckey = py_bytes
cdef char* cval
if val is None :
self.cmd_low_level(ckey,NULL,0,NULL,type_nullptr)
return
if isinstance(val, (int,long) ):
^
------------------------------------------------------------
plumed.pyx:232:33: undeclared name not builtin: long
Best,
Mandar
Changed line 232 of python/plumed.pyx (plumed 2.9.0) to
if isinstance(val, int ):
Best,