This minor release introduces Python `3.6` compatibility hence the library can now be freely used on [Google's Colab](https://colab.research.google.com/).
`torchfunc.modules` module was also extended, additions being:
- `device` function (so you can check `device` of PyTorch module or `torch.Tensor`)
- `switch_device` context manager which cast `obj` (e.g. `torch.nn.Module` or `torch.Tensor`) to specified device when with-in the block and casts it back after the block is finished
- `{weight, bias, named}_parameters` - yields parameters only if they are `{weight, bias, named}` in order to remove unnecessary `if` statements and clarify the intent.