shifqu
shifqu
Hi, First off, I am not related to this project, but I just figured I'd share what I found out. Environment: - Windows 10 - Python 3.7.4 - pip 19.0.3...
@StefnirKristjansson not sure that the usage of `table_args` is more elegant, but it is certainly what I was looking for. This way you can define an actual `UniqueConstraint` that spans...
I also encountered this issue and ended up implementing the check for a Literal at the beginning of `get_sqlachemy_type`. ```python field_type = field.type_ if is_literal_type(field_type): # Try to get the...
Hello I think I am experiencing a bug due to the addition of poetry's group dependencies. ``` Poetry.lock hash 'OBFUSCATED' does not correspond to hash computed based on pyproject.toml 'OBFUSCATED',...
Hello, I am having trouble reproducing this with an artificial poetry.lock/pyproject.toml as it normally is a step in our deployment to openshift, which uses source2image, which in turn uses micropipenv....
So, after checking our toml file for differences, and reading a bit of code, I was able to come up with a mvp to reproduce the issue. Poetry 1.2 no...
@frenzymadness thanks! I made a short review on your PR, but am closing one comment, as re-reading your last comment made me realize that just getting the `groups` key is...
I just tested the PR from your personal repository and can confirm that my previous test now succeeds 👌 I then ran the command `poetry add --group extra isort`, which...
I bet we are doing something wrong here, @symstu . But I have the same issue. I try to call a method I defined in my `Mutation` object, it's called...
First off, I am using graphene-django, so this might be totally unrelated. As a current work around I keep `mutate` as a `@classmethod`. I also changed the signature from `self,...