According to the docs, [`create_view` accepts a `replace` boolean argument](https://sqlalchemy-utils.readthedocs.io/en/latest/view.html) and [it's visible in master](https://github.com/kvesteri/sqlalchemy-utils/blob/master/sqlalchemy_utils/view.py#L132). When I install it using pip, however, the `create_view` initializer looks like this (in both `0.41.1` and `0.41.0`): ``` def create_view( name, selectable, metadata, cascade_on_drop=True ): ``` When run, it gives the error: `TypeError: create_view() got an unexpected keyword argument 'replace'` Any ideas?