Ben Whalley
Ben Whalley
There is a brief mention of minio in the readme, but I'm not clear it's possible to use Digital Ocean (DO) spaces or other s3 compatible hosts right now. Having...
Mypy complains about this code: ``` collector = Collector(using="default") collector.collect([self]) children = list(itertools.chain(*[v for k, v in collector.data.items()])) ``` saying error: "Collector" has no attribute "data" I'm not sure what...
If I run the following: ``` #call 1 Pandoc.brew(text = "# heading \n text" , output = "fileinsamdir.rtf", convert = 'rtf') #call 2 Pandoc.brew(text = "# heading \n text" ,...
I was having problem with tablib exports which depends on pyyml. I wonder, is this expected behaviour? ``` import yaml from decimal import * yaml.dump(Decimal(2.1)) ``` works, but produces this:...
I've searched quite hard but can't find detail on the differences implied by the different mimic options. There are many references to mimic throughout the codebase, but I wonder if...
The current install instructions suggest that people include `path("sessions/", include("user_sessions.urls", "user_sessions")),` in their urls.py However without additional work this creates pages which display all active sessions to any users. I...
I wonder if you'd considered allowing callable for is_now and was conditions? For example, if this function: ``` def _check_is_now_condition(self, field_name: str, specs: dict) -> bool: return specs["is_now"] in (self._current_value(field_name),...
Hi -auto prior is really cool, but at the moment it doesn't work with multivariate models. You need to se the "resp" column in the resulting data frame by hand...
At present using this inside a class based view: ``` @method_decorator(cacheback(lifetime=60)) def get_context_data(...): ... ``` Causes an error: `AttributeError: 'functools.partial' object has no attribute '__module__'` The error arises in `jobs.prepare_args`...