Gwildor Sok

Results 7 comments of Gwildor Sok

My solution was to simply leave `wkhtmltopdf` out of `INSTALLED_APPS` and use the views I needed directly in my `views.py` module. Worked fine that way.

I've used the view like this: ``` python class ResultsPDFView(PDFTemplateView, ResultsView): ... ``` Where `ResultsView` is a subclass of `generic.TemplateView`, and this worked fine! One tiny annoyance I had is...

This seems to be due to a change in the admin templates in 1.6. See this issue on another project: https://github.com/iambrandontaylor/django-admin-sortable/issues/64 And the commit that fixed it: https://github.com/iambrandontaylor/django-admin-sortable/commit/469e7d5d4dfb4923035b45e01847db52d5cf73ae Not sure...

Alright I seem to have fixed it, at least for me on the project I'm working on. I might make a pull request on SilverFix' repo which generally seems to...

Well like I said I use SilverFix' version because that one is way more active (last update 19 days ago versus 9 months) and generally seems more stable because of...

I think the `DbtRunOperationOperator` requires a bit more work. It is, as far as I know, the only dbt command that takes a positional argument (the macro you want to...

I'm having issues here as well, since `google-cloud-core` requires `grpcio>=1.7.0` since https://github.com/GoogleCloudPlatform/google-cloud-python/pull/4280. I solved this by reverting to `google-gax==0.15.14`, which luckily is allowed since `google-cloud-pubsub==0.29.0` has `google-gax>=0.15.13`. It was a...