Paul Garner
Paul Garner
Sounds like you need a way to limit or cleanup old releases :) Google App Engine does this, you can have about 10 I think and have to delete one...
I think I have a related issue ```python # settings.py SOME_DICT = { 'a': 'whatever', 'b': 'whatever', 'c': 'whatever', } ``` ```python # myproject/mymodule.py from django.conf import settings whatever =...
this looks the same https://github.com/typeddjango/django-stubs/issues/352
This would big a big help to anyone wanting to use graphene in a typed codebase Because the 3rd party type defs we've been using seem to be abandonware (e.g....
My use case was for synonyms, rather than the stemming-style variations shown in the whoosh example. So I have a more limited set of variations expanded into the query (which...
Same problem here ``` $ virtualenv-clone /data/jenkins/.virtualenvs/master-branch /data/jenkins/.virtualenvs/duplicated-master Traceback (most recent call last): File "/data/jenkins/.virtualenvs/duplicated-master/lib/python2.7/site.py", line 703, in main() File "/data/jenkins/.virtualenvs/duplicated-master/lib/python2.7/site.py", line 683, in main paths_in_sys = addsitepackages(paths_in_sys) File "/data/jenkins/.virtualenvs/duplicated-master/lib/python2.7/site.py",...
more info, the script has done something weird to the path _in the original virtualenv_ if I edit `/data/jenkins/.virtualenvs/master-branch/lib/python2.7/genericpath.py` in my original virtualenv and add a debugging print like: ```...
the packages from my pip requirements installed as editable seem like they may be implicated somehow e.g. `/data/jenkins/.virtualenvs/duplicated-master/src/txstatsd` in the bad path above corresponds to ``` -e git+git://github.com/myorg/txstatsd.git@50c77b8df8e1dc5ffaf1ba853691d3da280c1b39#egg=txstatsd ``` in...
I just hit this too it seems like uplink does not call `pydantic_model.dict()` like you would expect, but instead uses this other function: https://github.com/prkumar/uplink/blob/d3ee283426873ad61243b5759b7cb52f8f712567/uplink/converters/pydantic_.py#L12 and in pydantic that method doesn't...
The need to rebase feature PRs is a nuisance but I think the problem is worst with hotfixes. The reason is described here: https://discuss.circleci.com/t/github-protected-branch/1121/3 > When required status checks are...