This package errors in python 3, to make it work I had to make the following changes: - in `src/pymobility/models/__init__.py`: replace `from mobility import *` by `from .mobility import *` - in `src/pymobility/simulation.py` replace `xrange` by `range`
This package errors in python 3, to make it work I had to make the following changes:
src/pymobility/models/__init__.py:replace
from mobility import *byfrom .mobility import *src/pymobility/simulation.pyreplacexrangebyrange