Skip to content

Commit ce86aaa

Browse files
[doc] Avoid a redirection in the links (PyCQA => pylint-dev) (#436)
1 parent 23722cd commit ce86aaa

14 files changed

+97
-97
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
**WARNING:** Please do not report issues about missing Django, see
2-
[README](https://github.com/PyCQA/pylint-django#installation)!
2+
[README](https://github.com/pylint-dev/pylint-django#installation)!
33

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

CHANGELOG.rst

+80-80
Large diffs are not rendered by default.

README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
pylint-django
22
=============
33

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

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

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

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

3535
pip install pylint-django[with-django]

pylint_django/tests/input/external_django_tables2_noerror_meta_class.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Check that Meta class definitions for django_tables2 classes
22
# don't produce old-style-class warnings, see
3-
# https://github.com/PyCQA/pylint-django/issues/56
3+
# https://github.com/pylint-dev/pylint-django/issues/56
44

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

pylint_django/tests/input/external_model_utils_noerror_override_manager.py

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

77
from django.db import models

pylint_django/tests/input/func_noerror_duplicate_except_doesnotexist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Checks that Pylint does not complain about duplicate
33
except blocks catching DoesNotExist exceptions:
4-
https://github.com/PyCQA/pylint-django/issues/81
4+
https://github.com/pylint-dev/pylint-django/issues/81
55
"""
66
# pylint: disable=missing-docstring
77
from django.db import models

pylint_django/tests/input/func_noerror_foreignkeys.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class UserPreferences(models.Model):
7070
"""
7171
Used for testing FK which refers to another model by
7272
string, not model class, see
73-
https://github.com/PyCQA/pylint-django/issues/35
73+
https://github.com/pylint-dev/pylint-django/issues/35
7474
"""
7575

7676
user = ForeignKey("User", on_delete=models.CASCADE)

pylint_django/tests/input/func_noerror_generic_foreign_key.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Checks that Pylint does not complain about GenericForeignKey fields:
3-
https://github.com/PyCQA/pylint-django/issues/230
3+
https://github.com/pylint-dev/pylint-django/issues/230
44
"""
55
# pylint: disable=missing-docstring
66

pylint_django/tests/input/func_noerror_model_objects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Test that defining `objects` as a regular model manager
22
# doesn't raise issues, see
3-
# https://github.com/PyCQA/pylint-django/issues/144
3+
# https://github.com/pylint-dev/pylint-django/issues/144
44
#
55
# pylint: disable=missing-docstring
66

pylint_django/tests/input/func_noerror_protected_meta_access.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Tests to make sure that access to _meta on a model does not raise
33
a protected-access warning, as it is part of the public API since
44
Django 1.8
5-
(see https://github.com/PyCQA/pylint-django/issues/66,
5+
(see https://github.com/pylint-dev/pylint-django/issues/66,
66
and https://docs.djangoproject.com/en/1.9/ref/models/meta/)
77
"""
88
# pylint: disable=missing-docstring

pylint_django/tests/input/func_noerror_test_wsgi_request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Checks that Pylint does not complain about a standard test. See:
3-
https://github.com/PyCQA/pylint-django/issues/78
3+
https://github.com/pylint-dev/pylint-django/issues/78
44
"""
55

66
from django.db import models

pylint_django/tests/input/func_noerror_unicode_py2_compatible.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Ensures that no '__unicode__ missing' warning is emitted if the
33
Django python3/2 compatability decorator is used
44
5-
See https://github.com/PyCQA/pylint-django/issues/10
5+
See https://github.com/pylint-dev/pylint-django/issues/10
66
"""
77
from django.db import models
88

pylint_django/tests/input/func_noerror_wsgi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Used to verify pylint_django doesn't produce invalid-name for
55
the application variable. See:
6-
https://github.com/PyCQA/pylint-django/issues/77
6+
https://github.com/pylint-dev/pylint-django/issues/77
77
"""
88

99
import os

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "pylint-django"
88
version = "2.7.0"
99
readme = "README.rst"
1010
description = "A Pylint plugin to help Pylint understand the Django web framework"
11-
repository = "https://github.com/PyCQA/pylint-django"
11+
repository = "https://github.com/pylint-dev/pylint-django"
1212
authors = [ "Carl Crowder <[email protected]>" ]
1313
classifiers = [
1414
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)