Bruno Alla

Results 348 comments of Bruno Alla

Are you sure it was a length issue? I initially thought I had the same problem, but mine was actually caused by https://github.com/trentm/python-markdown2/issues/233 which was making links invalid. Thanks for...

I have the same problem as well. I haven't tested it yet, but in case you're using PostgreSQL, an alternative option to using `CountryField(multiple=True)` might be to use [an `ArrayField`](https://docs.djangoproject.com/en/3.0/ref/contrib/postgres/fields/#arrayfield)....

I've tried to use this after generating a project with this cookiecuter template, but it didn't work at first, it was showing up an error with `missing PyPI password` despite...

I wanted to use this cookie cutter to generate a new package and found this PR. I'm interested in it because it's adding Python 3.6 to Travis 👍 I think...

What's the best practice to handle this? Is it done through a `manage.py` using a basic set of settings? If so, I believe the work from #164 should be enough.

For testing with multiple versions, Whitenoise has a pretty good [build matrix](https://github.com/evansd/whitenoise/blob/69c61600808ccf3594b266d435d355a97dd4866e/.appveyor.yml).

There is a [related discussion on SO](http://stackoverflow.com/questions/8428556/django-default-settings-convention-for-pluggable-app) about that, and the question lists 5 different ways of doing this. There is a limitation that I've found with these approaches is...

I can confirm I have the same issue as @cbows described above with the trailing whitespace pre-commit hook. I've disabled this hook for now, but it would be nice if...

There is a bug in the script when we introduce a new dependency, it crashes in the middle because it cannot find the existing version. It started breaking when DRF-spectacular...