Skip to content

[doc] Avoid a redirection in the links (PyCQA => pylint-dev) #436

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
**WARNING:** Please do not report issues about missing Django, see
[README](https://github.com/PyCQA/pylint-django#installation)!
[README](https://github.com/pylint-dev/pylint-django#installation)!

**TODO:** make sure to post the output of `pip freeze`

Expand Down
160 changes: 80 additions & 80 deletions CHANGELOG.rst

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pylint-django
=============

.. image:: https://github.com/PyCQA/pylint-django/actions/workflows/build.yml/badge.svg
:target: https://github.com/PyCQA/pylint-django/actions/workflows/build.yml
.. image:: https://github.com/pylint-dev/pylint-django/actions/workflows/build.yml/badge.svg
:target: https://github.com/pylint-dev/pylint-django/actions/workflows/build.yml

.. image:: https://coveralls.io/repos/github/PyCQA/pylint-django/badge.svg?branch=master
:target: https://coveralls.io/github/PyCQA/pylint-django?branch=master
.. image:: https://coveralls.io/repos/github/pylint-dev/pylint-django/badge.svg?branch=master
:target: https://coveralls.io/github/pylint-dev/pylint-django?branch=master

.. image:: https://img.shields.io/pypi/v/pylint-django.svg
:target: https://pypi.python.org/pypi/pylint-django
Expand All @@ -29,7 +29,7 @@ To install::

**WARNING:** ``pylint-django`` will not install ``Django`` by default because
this causes more trouble than good,
`see discussion <https://github.com/PyCQA/pylint-django/pull/132>`__. If you wish
`see discussion <https://github.com/pylint-dev/pylint-django/pull/132>`__. If you wish
to automatically install the latest version of ``Django`` then::

pip install pylint-django[with-django]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Check that Meta class definitions for django_tables2 classes
# don't produce old-style-class warnings, see
# https://github.com/PyCQA/pylint-django/issues/56
# https://github.com/pylint-dev/pylint-django/issues/56

# pylint: disable=missing-docstring,too-few-public-methods

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Check that when overriding the 'objects' attribite of a model class
# with a manager from the django-model-utils package pylint-django
# does not report not-an-iterator error, see
# https://github.com/PyCQA/pylint-django/issues/117
# https://github.com/pylint-dev/pylint-django/issues/117
# pylint: disable=missing-docstring, invalid-name

from django.db import models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Checks that Pylint does not complain about duplicate
except blocks catching DoesNotExist exceptions:
https://github.com/PyCQA/pylint-django/issues/81
https://github.com/pylint-dev/pylint-django/issues/81
"""
# pylint: disable=missing-docstring
from django.db import models
Expand Down
2 changes: 1 addition & 1 deletion pylint_django/tests/input/func_noerror_foreignkeys.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class UserPreferences(models.Model):
"""
Used for testing FK which refers to another model by
string, not model class, see
https://github.com/PyCQA/pylint-django/issues/35
https://github.com/pylint-dev/pylint-django/issues/35
"""

user = ForeignKey("User", on_delete=models.CASCADE)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Checks that Pylint does not complain about GenericForeignKey fields:
https://github.com/PyCQA/pylint-django/issues/230
https://github.com/pylint-dev/pylint-django/issues/230
"""
# pylint: disable=missing-docstring

Expand Down
2 changes: 1 addition & 1 deletion pylint_django/tests/input/func_noerror_model_objects.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Test that defining `objects` as a regular model manager
# doesn't raise issues, see
# https://github.com/PyCQA/pylint-django/issues/144
# https://github.com/pylint-dev/pylint-django/issues/144
#
# pylint: disable=missing-docstring

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Tests to make sure that access to _meta on a model does not raise
a protected-access warning, as it is part of the public API since
Django 1.8
(see https://github.com/PyCQA/pylint-django/issues/66,
(see https://github.com/pylint-dev/pylint-django/issues/66,
and https://docs.djangoproject.com/en/1.9/ref/models/meta/)
"""
# pylint: disable=missing-docstring
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Checks that Pylint does not complain about a standard test. See:
https://github.com/PyCQA/pylint-django/issues/78
https://github.com/pylint-dev/pylint-django/issues/78
"""

from django.db import models
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Ensures that no '__unicode__ missing' warning is emitted if the
Django python3/2 compatability decorator is used

See https://github.com/PyCQA/pylint-django/issues/10
See https://github.com/pylint-dev/pylint-django/issues/10
"""
from django.db import models

Expand Down
2 changes: 1 addition & 1 deletion pylint_django/tests/input/func_noerror_wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Used to verify pylint_django doesn't produce invalid-name for
the application variable. See:
https://github.com/PyCQA/pylint-django/issues/77
https://github.com/pylint-dev/pylint-django/issues/77
"""

import os
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "pylint-django"
version = "2.7.0"
readme = "README.rst"
description = "A Pylint plugin to help Pylint understand the Django web framework"
repository = "https://github.com/PyCQA/pylint-django"
repository = "https://github.com/pylint-dev/pylint-django"
authors = [ "Carl Crowder <[email protected]>" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down