Skip to content

Commit

Permalink
[doc] Avoid a redirection in the links (PyCQA => pylint-dev) (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas authored Oct 8, 2024
1 parent 23722cd commit ce86aaa
Show file tree
Hide file tree
Showing 14 changed files with 97 additions and 97 deletions.
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

0 comments on commit ce86aaa

Please sign in to comment.