Peter Bengtsson
Peter Bengtsson
Hey @lexqt I know this was two years ago but what's up with this PR? I'm currently using django 1.11 with jinja and django-pipeline and it's sooo sloooow when using...
For now, to get a better dev environment I set: ```python PIPELINE = { ... 'PIPELINE_COLLECTOR_ENABLED': False, } ```
If someone knows they want `django-redis` with `dill` they'd install it with `pip install "django-redis[dill]"`. To make that work you'd just add to `setup.py`...: ```python extras_require={ 'dill': ['dill'], }, ```
Can this PR also come with a change to the docs?
I stumbled on this too. I tried what @shanx did but it didn't work. Here's how I fixed it for my project: ``` # settings.py #TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' TEST_RUNNER =...
Sorry. I spoke to soon. This subclass gets app discovery wrong. What doesn't work even with this is the ability to delete instances of models defined and created inside the...
You're right. It works. ```javascript import * as Legra from "legra/lib/legra.umd.js"; ```
Perhaps a simple start is to set the `engine` to `>=10` and remove all mentions of `iltorb`. This would require a major release.
How about not keeping a mutable when *creating* the decorator: ```python @requests_mock.Mocker() def f1(m): print(m.call_count) m.get('https://www.peterbe.com', text='OK') requests.get('https://www.peterbe.com') f1() f1() ``` This prints ``` 0 1 ``` But if you...
I have this Python 3.7.5 virtualenv and I copied those exact lines into a little file and ran it: ``` ▶ cat dummy.py import requests import requests_mock @requests_mock.Mocker() def f1(m):...