Tomasz Wójcik

Results 47 comments of Tomasz Wójcik

Great! I was hoping one of the Starlette maintainers would chime in and help make this decision. Thanks.

> But we have to be explicit about it. Latest updates to pip issue a DeprecatedWarning to systems still using setup.py or setup.cfg to define project metadata. That's a valid...

> My API needs to have a consistent error schema with the rest of the system, which is a quite custom JSON response. AFAIK that's impossible. Unless you have another...

> My API needs to have a consistent error schema with the rest of the system, which is a quite custom JSON response. This kills any way for user to...

I think we need to distinguish server/internal errors and client errors. The latter ones need to be returned and need to be "loggable". Let's continue the discussion on the implementation...

Just run into the same problem. `.node-version` file with `11.15.0` solves it as well (for netlify). upstream ticket https://github.com/frontarm/navi/issues/92

I confirm the bug persists, although a quick fix for me was to change the `basename` to what it required. ``` djangorestframework==3.11.1 django-rest-polymorphic==0.1.9 django-polymorphic==3.0.0 django==3.1.2 ``` I named my model...

@wilhelmklopp , use the suggested context manager in your custom test runner. ```python # common/test_runner.py import httpretty from django.test.runner import DiscoverRunner class CustomTestRunner(DiscoverRunner): def run_tests(self, *args, **kwargs): with httpretty.enabled(allow_net_connect=False): return...

> AttributeError: 'BaseModelQuerySet' object has no attribute 'custom_method' So it's a queryset. `custom_method` is defined on the model/instance level.

I struggled with lots of errors but finally managed to make it work (for `generate_presigned_post`). I get my client from (if you need it) ``` client = S3Boto3Storage().bucket.meta.client ``` And...