thenewguy
thenewguy
It would be helpful if my artifact would not squash the directory structure. For example, ``` - name: Archive production artifacts uses: actions/upload-artifact@v2 with: name: assets retention-days: 5 path: ./root/relative/path/to/my/file*...
I am running into an issue I cannot figure out. Here is the traceback: ``` ====================================================================== ERROR: test_wand_image_reads_gif (wagtailimages_autoformat.tests.test_requirements.TestRequirements) ---------------------------------------------------------------------- Traceback (most recent call last): File "/wagtailimages_autoformat/tests/test_requirements.py", line 22, in...
Used in the following places: - https://github.com/jazzband/django-robots/blob/be2e781b46aeceb728303f46da585d237e079409/src/robots/settings.py#L11 - https://github.com/jazzband/django-robots/blob/be2e781b46aeceb728303f46da585d237e079409/src/robots/views.py#L22
Traceback: ``` lock = cache_redis_lock.lock(name, blocking=False, timeout=240) File "/home/vagrant/.tox/py37/lib/python3.7/site-packages/django_redis/cache.py", line 31, in _decorator return method(self, *args, **kwargs) File "/home/vagrant/.tox/py37/lib/python3.7/site-packages/django_redis/cache.py", line 173, in lock return self.client.lock(*args, **kwargs) TypeError: lock() got an...
I am trying to add `TaggableManager` to an Abstract model. I've added a related name like `related_name='%(app_label)s_%(class)s_tags'`. This gives an error like `The name '%(app_label)s_%(class)s_tags' is invalid related_name for field`...
It is sometimes necessary to include metadata about particular tags - i.e. for filtering purposes like required, optional, excluded, etc. In this case, you need to create a ForeignKey to...
It would be very helpful to have the creation timestamp for a tagged item. It seems like this information would be generally useful and would allow adding `most_recent()` and `least_recent()`...
Fixes #15
It would be helpful if the default encoder used the DjangoJsonEncoder class for the JSON conversion to automatically handle types like uuid. This is what happens when you pass a...
I handle url normalization with a post processor. It would be handy if PTRACK_APP_URL could be an empty string. Not a lot of work but I had to do this:...