Luis Fernando Castillo Mata
Luis Fernando Castillo Mata
Can confirm the workaround suggested by @leonsmith [391#](https://github.com/matthewwithanm/django-imagekit/issues/391#issuecomment-275367006) worked for me, here the stack I used Django==1.11.5 django-storages==1.6.5 botocore==1.12.91 boto3==1.9.143 django-imagekit==4.0
``` File "/home/vagrant/home/vagrant/wikirealty/lib/python3.4/site-packages/memoize/__init__.py", line 339, in decorated_function timeout=decorated_function.cache_timeout File "/home/vagrant/home/vagrant/wikirealty/lib/python3.4/site-packages/memoize/__init__.py", line 82, in set self.cache.set(key=key, value=value, timeout=timeout) File "/home/vagrant/home/vagrant/wikirealty/lib/python3.4/site-packages/django/core/cache/backends/memcached.py", line 86, in set if not self._cache.set(key, value, self.get_backend_timeout(timeout)): File "/home/vagrant/home/vagrant/wikirealty/lib/python3.4/site-packages/memcache.py",...
try this: ``` from facebook import * class GraphAPIExt(GraphAPI): def put_video(self, video=None, video_name=None, album_path="me/videos", **kwargs): """ Upload a video using multipart/form-data. video - A file object representing the video to...
if someone else is looking for a way to test a form with a `ReCaptchaField` you can apply the following workaround ``` class FormTestCase(TestCase): @patch("captcha.fields.client") def test_form(self, client_mock): check_captcha_mock =...
Today i tried to upgrade from pycountry==22.1.10 to pycountry==22.3.5 and it triggered the error described above, for what is worth i had this comment in my requirements file from long...
BUMP!