jozo
jozo
Sure, why not. I've changed it. Here: https://github.com/jozo/django-rest-framework-condition/commit/2678a5220f4e5270c5136c314d4552c5fd3f5371
I wanted to check it but I wasn't able to run the project you mentioned. Probably because it's 5 years old and there are no requirements.txt. Can you please provide...
Thank you for your PR @terencehonles . I'm wondering what is the benefit of this PR. Is it performance? If so, how much it improves it? Does it outweigh simplicity...
Hi, I don't know solution for this. If you find one, please share it here with others.
Hi, the problem here is that you are using macOS. It doesn't have X11 server by default. But you can install and use XQuartz. Here is nice tutorial how to...
You can add `-e` (environment variables) to Dockerfile. You can use `ENV` for that (check [docs](https://docs.docker.com/engine/reference/builder/#env)). You can't define `-v` commands in Dockerfile. Instead of that you can `COPY` your...
> and what does the following option do? why do we need it? > > ``` > -v /tmp/.X11-unix:/tmp/.X11-unix \ > ``` It's socket file for X11 server. To use...
Here it's described: https://bugs.python.org/issue37424 It's fixed in Python 3.7.5: https://docs.python.org/release/3.7.5/whatsnew/changelog.html#changelog
Which OS do you use? You need to have x11 (X.Org) running.
You don't provide much information. :/ But based on the error you've provided it seems you have problem with X.Org. Here is an article that explains how to use it...