Adam Johnson
Adam Johnson
Upstream IPython dropped it in version 6.0.0, in April 2017. I think it's fine to drop it here now. Would also be good to use this opportunity to mark the...
With `something` assigned to a two-tuple,`dict([something])` incorrectly gets marked by C406 as something that can be converted to a dict literal.
I've been trying to get Django's test runner to run `manage.py check` at the start of the test suite in django/django#6294. It actually used to do it in 1.7 and...
Hi, Thank you for this package. I'm upgrading my project from using version 1.6.8 to 1.7.0 but the changelog isn't very helpful since it stopped at 1.6.7. Is there any...
Refs #3.
#### The problem Take a model with a `size` attr: ```python from dataclasses import dataclass @dataclass class Container: name: str size: int ``` This is a somewhat reasonable/common name. Unfortunately...
If `django.contrib.contenttypes` is not installed, Model Bakery fails to run. Model bakery doesn't declare a hard dependency on content types, and it doesn't look like it needs one. It just...
This issue also affects django-upgrade: https://github.com/adamchainz/django-upgrade/issues/97 pyupgrade rewrites some names, so we might expect it to do so inside f-strings: ```diff -f"{six.text_type(1)}"' +f"{str(1)}" ``` Unfortunately it fails to do so....
As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on...
* Declare Django dependency with version - I pulled this from the `tox.ini` which is testing with Django 1.11 onwards. * Remove dead "Django 1.8" classifier. * Add missing Python...