Skip to content

Commit a0f3b83

Browse files
[doc] Avoid more redirections in the links (PyCQA => pylint-dev)
1 parent 1d7c738 commit a0f3b83

11 files changed

+43
-43
lines changed

CHANGELOG.rst

+31-31
Original file line numberDiff line numberDiff line change
@@ -465,58 +465,58 @@ Version 0.7.4
465465
- `#88 <https://github.com/pylint-dev/pylint-django/pull/88>`__ Fixed builds
466466
with Django 1.10 (thanks to
467467
`federicobond <https://github.com/federicobond>`__)
468-
- `#91 <https://github.com/PyCQA/pylint-django/pull/91>`__ Fixed race
468+
- `#91 <https://github.com/pylint-dev/pylint-django/pull/91>`__ Fixed race
469469
condition when running with pylint parallel execution mode (thanks to
470470
`jeremycarroll <https://github.com/jeremycarroll>`__)
471-
- `#64 <https://github.com/PyCQA/pylint-django/issues/64>`__ "Meta is
471+
- `#64 <https://github.com/pylint-dev/pylint-django/issues/64>`__ "Meta is
472472
old style class" now suppressed on BaseSerializer too (thanks to
473473
`unklphil <https://github.com/unklphil>`__)
474-
- `#70 <https://github.com/PyCQA/pylint-django/pull/70>`__ Updating to
474+
- `#70 <https://github.com/pylint-dev/pylint-django/pull/70>`__ Updating to
475475
handle newer pylint/astroid versions (thanks to
476476
`iXce <https://github.com/iXce>`__)
477477

478478
Version 0.7.2
479479
-------------
480480

481-
- `#76 <https://github.com/PyCQA/pylint-django/pull/76>`__ Better
481+
- `#76 <https://github.com/pylint-dev/pylint-django/pull/76>`__ Better
482482
handling of mongoengine querysetmanager
483-
- `#73 <https://github.com/PyCQA/pylint-django/pull/73>`__
484-
`#72 <https://github.com/PyCQA/pylint-django/issues/72>`__ Make package
483+
- `#73 <https://github.com/pylint-dev/pylint-django/pull/73>`__
484+
`#72 <https://github.com/pylint-dev/pylint-django/issues/72>`__ Make package
485485
zip safe to help fix some path problems
486-
- `#68 <https://github.com/PyCQA/pylint-django/pull/68>`__ Suppressed
486+
- `#68 <https://github.com/pylint-dev/pylint-django/pull/68>`__ Suppressed
487487
invalid constant warning for "app\_name" in urls.py
488-
- `#67 <https://github.com/PyCQA/pylint-django/pull/67>`__ Fix
488+
- `#67 <https://github.com/pylint-dev/pylint-django/pull/67>`__ Fix
489489
view.args and view.kwargs
490-
- `#66 <https://github.com/PyCQA/pylint-django/issues/66>`__ accessing
490+
- `#66 <https://github.com/pylint-dev/pylint-django/issues/66>`__ accessing
491491
\_meta no longer causes a protected-access warning as this is a
492492
public API as of Django 1.8
493-
- `#65 <https://github.com/PyCQA/pylint-django/pull/65>`__ Add support
493+
- `#65 <https://github.com/pylint-dev/pylint-django/pull/65>`__ Add support
494494
of mongoengine module.
495-
- `#59 <https://github.com/PyCQA/pylint-django/pull/59>`__ Silence
495+
- `#59 <https://github.com/pylint-dev/pylint-django/pull/59>`__ Silence
496496
old-style-class for widget Meta
497497

498498
Version 0.7.1
499499
-------------
500500

501-
- `#52 <https://github.com/PyCQA/pylint-django/issues/52>`__ - Fixed
501+
- `#52 <https://github.com/pylint-dev/pylint-django/issues/52>`__ - Fixed
502502
stupid mistake when using versioninfo
503503

504504
Version 0.7
505505
-----------
506506

507-
- `#51 <https://github.com/PyCQA/pylint-django/issues/51>`__ - Fixed
507+
- `#51 <https://github.com/pylint-dev/pylint-django/issues/51>`__ - Fixed
508508
compatibility with pylint 1.5 / astroid 1.4.1
509509

510510
Version 0.6.1
511511
-------------
512512

513-
- `#43 <https://github.com/PyCQA/pylint-django/issues/43>`__ - Foreign
513+
- `#43 <https://github.com/pylint-dev/pylint-django/issues/43>`__ - Foreign
514514
key ID access (``somefk_id``) does not raise an 'attribute not found'
515515
warning
516-
- `#31 <https://github.com/PyCQA/pylint-django/issues/31>`__ - Support
516+
- `#31 <https://github.com/pylint-dev/pylint-django/issues/31>`__ - Support
517517
for custom model managers (thanks
518518
`smirolo <https://github.com/smirolo>`__)
519-
- `#48 <https://github.com/PyCQA/pylint-django/pull/48>`__ - Added
519+
- `#48 <https://github.com/pylint-dev/pylint-django/pull/48>`__ - Added
520520
support for django-restframework (thanks
521521
`mbertolacci <https://github.com/mbertolacci>`__)
522522

@@ -526,25 +526,25 @@ Version 0.6
526526
- Pylint 1.4 dropped support for Python 2.6, therefore a constraint is
527527
added that pylint-django will only work with Python2.6 if pylint<=1.3
528528
is installed
529-
- `#40 <https://github.com/PyCQA/pylint-django/issues/40>`__ - pylint
529+
- `#40 <https://github.com/pylint-dev/pylint-django/issues/40>`__ - pylint
530530
1.4 warned about View and Model classes not having enough public
531531
methods; this is suppressed
532-
- `#37 <https://github.com/PyCQA/pylint-django/issues/37>`__ - fixed an
532+
- `#37 <https://github.com/pylint-dev/pylint-django/issues/37>`__ - fixed an
533533
infinite loop when using astroid 1.3.3+
534-
- `#36 <https://github.com/PyCQA/pylint-django/issues/36>`__ - no
534+
- `#36 <https://github.com/pylint-dev/pylint-django/issues/36>`__ - no
535535
longer warning about lack of ``__unicode__`` method on abstract model
536536
classes
537-
- `PR #34 <https://github.com/PyCQA/pylint-django/pull/34>`__ - prevent
537+
- `PR #34 <https://github.com/pylint-dev/pylint-django/pull/34>`__ - prevent
538538
warning about use of ``super()`` on ModelManager classes
539539

540540
Version 0.5.5
541541
-------------
542542

543-
- `PR #27 <https://github.com/PyCQA/pylint-django/pull/27>`__ - better
543+
- `PR #27 <https://github.com/pylint-dev/pylint-django/pull/27>`__ - better
544544
``ForeignKey`` transforms, which now work when of the form
545545
``othermodule.ModelClass``. This also fixes a problem where an
546546
inferred type would be ``_Yes`` and pylint would fail
547-
- `PR #28 <https://github.com/PyCQA/pylint-django/pull/28>`__ - better
547+
- `PR #28 <https://github.com/pylint-dev/pylint-django/pull/28>`__ - better
548548
knowledge of ``ManyToManyField`` classes
549549

550550
Version 0.5.4
@@ -556,7 +556,7 @@ Version 0.5.4
556556
Version 0.5.3
557557
-------------
558558

559-
- `Issue #25 <https://github.com/PyCQA/pylint-django/issues/25>`__
559+
- `Issue #25 <https://github.com/pylint-dev/pylint-django/issues/25>`__
560560
Fixing cases where a module defines ``get`` as a method
561561

562562
Version 0.5.2
@@ -574,20 +574,20 @@ Version 0.5.1
574574
Version 0.5
575575
-----------
576576

577-
- `Issue #7 <https://github.com/PyCQA/pylint-django/issues/7>`__
577+
- `Issue #7 <https://github.com/pylint-dev/pylint-django/issues/7>`__
578578
Improved handling of Django model fields
579-
- `Issue #10 <https://github.com/PyCQA/pylint-django/issues/10>`__ No
579+
- `Issue #10 <https://github.com/pylint-dev/pylint-django/issues/10>`__ No
580580
warning about missing **unicode** if the Django python3/2
581581
compatibility tools are used
582-
- `Issue #11 <https://github.com/PyCQA/pylint-django/issues/11>`__
582+
- `Issue #11 <https://github.com/pylint-dev/pylint-django/issues/11>`__
583583
Improved handling of Django form fields
584-
- `Issue #12 <https://github.com/PyCQA/pylint-django/issues/12>`__
584+
- `Issue #12 <https://github.com/pylint-dev/pylint-django/issues/12>`__
585585
Improved handling of Django ImageField and FileField objects
586-
- `Issue #14 <https://github.com/PyCQA/pylint-django/issues/14>`__
586+
- `Issue #14 <https://github.com/pylint-dev/pylint-django/issues/14>`__
587587
Models which do not define **unicode** but whose parents do now have
588588
a new error (W5103) instead of incorrectly warning about no
589589
**unicode** being present.
590-
- `Issue #21 <https://github.com/PyCQA/pylint-django/issues/21>`__
590+
- `Issue #21 <https://github.com/pylint-dev/pylint-django/issues/21>`__
591591
``ForeignKey`` and ``OneToOneField`` fields on models are replaced
592592
with instance of the type they refer to in the AST, which allows
593593
pylint to generate correct warnings about attributes they may or may
@@ -605,9 +605,9 @@ Version 0.2
605605
- Pylint now recognises ``BaseForm`` as an ancestor of ``Form`` and
606606
subclasses
607607
- Improved ``Form`` support
608-
- `Issue #2 <https://github.com/PyCQA/pylint-django/issues/2>`__ - a
608+
- `Issue #2 <https://github.com/pylint-dev/pylint-django/issues/2>`__ - a
609609
subclass of a ``Model`` or ``Form`` also has warnings about a
610610
``Meta`` class suppressed.
611-
- `Issue #3 <https://github.com/PyCQA/pylint-django/issues/3>`__ -
611+
- `Issue #3 <https://github.com/pylint-dev/pylint-django/issues/3>`__ -
612612
``Form`` and ``ModelForm`` subclasses no longer warn about ``Meta``
613613
classes.

pylint_django/augmentations/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def ignore_import_warnings_for_related_fields(orig_method, self, node):
325325
new_things[name] = stmts
326326

327327
# ScopeConsumer changed between pylint 2.12 and 2.13
328-
# see https://github.com/PyCQA/pylint/issues/5970#issuecomment-1078778393
328+
# see https://github.com/pylint-dev/pylint/issues/5970#issuecomment-1078778393
329329
if hasattr(consumer, "consumed_uncertain"):
330330
# this is pylint >= 2.13, and the ScopeConsumer tuple has an additional field
331331
sc_args = (new_things, consumer.consumed, consumer.consumed_uncertain, consumer.scope_type)

pylint_django/checkers/foreign_key_strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def open(self):
6262
# Django is configured explicitly, and will use some basic defaults in that
6363
# case. However, as this is a WARNING not a FATAL, the error must be raised
6464
# with an AST node - only F and R messages are scope exempt (see
65-
# https://github.com/PyCQA/pylint/blob/master/pylint/constants.py#L24)
65+
# https://github.com/pylint-dev/pylint/blob/master/pylint/constants.py#L24)
6666

6767
# However, testing to see if Django is configured happens in `open()`
6868
# before any modules are inspected, as Django needs to be configured with

pylint_django/checkers/json_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2018 Alexander Todorov <[email protected]>
22

33
# Licensed under the GPL 2.0: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
4-
# For details: https://github.com/PyCQA/pylint-django/blob/master/LICENSE
4+
# For details: https://github.com/pylint-dev/pylint-django/blob/master/LICENSE
55
"""
66
Various suggestions about JSON http responses
77
"""

pylint_django/checkers/migrations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2020 Bryan Mutai <[email protected]>
33

44
# Licensed under the GPL 2.0: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
5-
# For details: https://github.com/PyCQA/pylint-django/blob/master/LICENSE
5+
# For details: https://github.com/pylint-dev/pylint-django/blob/master/LICENSE
66
"""
77
Various suggestions around migrations. Disabled by default! Enable with
88
pylint --load-plugins=pylint_django.checkers.migrations

pylint_django/checkers/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def visit_classdef(self, node):
124124
return
125125

126126
# if the Django compatibility decorator is used then we don't emit a warning
127-
# see https://github.com/PyCQA/pylint-django/issues/10
127+
# see https://github.com/pylint-dev/pylint-django/issues/10
128128
if _has_python_2_unicode_compatible_decorator(node):
129129
return
130130

pylint_django/tests/input/func_noerror_string_foreignkey.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
Checks that PyLint correctly handles string foreign keys
3-
https://github.com/PyCQA/pylint-django/issues/243
3+
https://github.com/pylint-dev/pylint-django/issues/243
44
"""
55
# pylint: disable=missing-docstring, hard-coded-auth-user
66
from django.db import models

pylint_django/tests/input/migrations/0002_new_column.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
default value on a large table leads to DB performance issues.
55
66
See:
7-
https://github.com/PyCQA/pylint-django/issues/118 and
7+
https://github.com/pylint-dev/pylint-django/issues/118 and
88
https://docs.djangoproject.com/en/2.0/topics/migrations/#postgresql
99
1010
> ... adding columns with default values will cause a full rewrite of

pylint_django/tests/input/models/func_noerror_foreign_key_key_cls_unbound_in_same_package.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
"""
22
Checks that Pylint does not crash with ForeignKey string reference pointing to model
33
in module of models package. See
4-
https://github.com/PyCQA/pylint-django/issues/232
4+
https://github.com/pylint-dev/pylint-django/issues/232
55
66
Note: the no-member disable is here b/c pylint-django doesn't know how to
77
load models.author.Author. When pylint-django tries to load models referenced
88
by a single string it assumes they are found in the same module it is inspecting.
99
Hence it can't find the Author class here so it tells us it doesn't have an
1010
'id' attribute. Also see:
11-
https://github.com/PyCQA/pylint-django/issues/232#issuecomment-495242695
11+
https://github.com/pylint-dev/pylint-django/issues/232#issuecomment-495242695
1212
"""
1313
# pylint: disable=missing-docstring, no-member
1414
from django.db import models

pylint_django/transforms/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def fake_module_builder():
2525
Build a fake module to use within transformations.
2626
@package_name is a parameter from the outer scope b/c according to
2727
the docs this can't receive any parameters.
28-
http://pylint.pycqa.org/projects/astroid/en/latest/extending.html?highlight=MANAGER#module-extender-transforms
28+
https://pylint.readthedocs.io/projects/astroid/en/latest/extending.html#module-extender-transforms
2929
"""
3030
transforms_dir = os.path.join(os.path.dirname(__file__), "transforms")
3131
transformed_name = re.sub(r"\.", "_", package_name)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ deps =
4141
django50: Django>=5.0,<5.1
4242
django51: Django>=5.1,<5.2
4343
django-main: Django
44-
django-main: git+https://github.com/pycqa/astroid@main
45-
django-main: git+https://github.com/pycqa/pylint@main
44+
django-main: git+https://github.com/pylint-dev/astroid@main
45+
django-main: git+https://github.com/pylint-dev/pylint@main
4646
setenv =
4747
PIP_DISABLE_PIP_VERSION_CHECK = 1
4848
PYTHONPATH = .

0 commit comments

Comments
 (0)