Moritz Ulmer
Moritz Ulmer
@banagale I would request that Django 3 support is added to the 0.2.2 release by either accepting PR #95 (drop Python 2.x support) or #96 (keep Python 2.x support)
Looking at the todo list, it seems like all tasks are done for a v3 to be released. Is there anything blocking making a release?
It might make sense to restrict the graphql-core dependency to the minor version as they have mentioned that the [minor versions](https://pypi.org/project/graphql-core/) are not compatible with another. > Note that for...
Regarding the Enum conversion, I see it as a bug, that the string of the member variable instead of the first element in the tuple is used. i.e., given the...
You need to enroll in the waitlist here: https://github.com/sponsors/accounts I sponsor ArduinoJson and gojq, and as far as I see it, your project lies somewhere on a similar level.
Would it make sense to add example code somewhere? Or is there a blog or repo that can be used as an example? > On 26. Mar 2018, at 09:11,...
Check that 👍🏼
It was actually much simpler than that, just set `RQ_CONNECTION_CLASS = 'fakeredis.FakeStrictRedis'` when setting the config variables. The relevant sections are: ``` class Config: APP_NAME = os.environ.get('APP_NAME') RQ_CONNECTION_CLASS = 'fakeredis.FakeStrictRedis'...
Totally forgot about it. I’ll send you an MR by the end of next week. > On 19. Sep 2018, at 10:25, Jannis Leidel wrote: > > @moritz89 Yeah, adding...
@carltongibson It seems that this can be implemented by simply using a different Twisted endpoint class. Instead of using `SSL4ServerEndpoint` replace it with `TCP4ServerEndpoint`. I'm referring to this Twisted [example](https://python-hyper.org/projects/hyper-h2/en/stable/twisted-example.html).