I pulled the latest changes from the develop branch locally and when attempting to import a Gmsh *.msh file I get the following error:
Traceback (most recent call last):
File "/home/zdavis/apps/pyfr/pyfr/pyfr", line 14, in <module>
from pyfr.backends import BaseBackend, get_backend
File "/home/zdavis/apps/pyfr/pyfr/backends/__init__.py", line 1, in <module>
from pyfr.backends.base import BaseBackend
File "/home/zdavis/apps/pyfr/pyfr/backends/base/__init__.py", line 7, in <module>
from pyfr.backends.base.types import (ConstMatrix, Matrix, MatrixBase,
File "/home/zdavis/apps/pyfr/pyfr/backends/base/types.py", line 6, in <module>
from pyfr.mpiutil import autofree, get_comm_rank_root, mpi
File "/home/zdavis/apps/pyfr/pyfr/mpiutil.py", line 202
svals = dset[self.start:self.end, *didxs][self.sidx]
^
SyntaxError: invalid syntax
Is this an issue with my environment, or is there a syntax error that was introduced recently? Thanks!