diff --git a/CHANGELOG.md b/CHANGELOG.md index 81da9849..b5408127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.5.2 + +* Remove `toml` support for config files + ## 2.5.1 * Remove `.editorconfig` from default config file diff --git a/django_migration_linter/management/commands/lintmigrations.py b/django_migration_linter/management/commands/lintmigrations.py index 622e7dff..25c3b073 100644 --- a/django_migration_linter/management/commands/lintmigrations.py +++ b/django_migration_linter/management/commands/lintmigrations.py @@ -13,7 +13,6 @@ CONFIG_NAME = "django_migration_linter" DEFAULT_CONFIG_FILES = ( ".{}.cfg".format(CONFIG_NAME), - "pyproject.toml", "setup.cfg", "tox.ini", ) diff --git a/docs/usage.md b/docs/usage.md index a2a7f42e..93c25f15 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -6,7 +6,7 @@ The linter is installed as a Django app and is integrated through the Django man `python manage.py lintmigrations [GIT_COMMIT_ID] ...` -Below the detailed command line options, which can all also be defined using a config file (`setup.cfg`, `tox.ini`, `pyproject.toml`, `.django_migration_linter.cfg`): +Below the detailed command line options, which can all also be defined using a config file (`setup.cfg`, `tox.ini`, `.django_migration_linter.cfg`): | Parameter | Description | |--------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|