update links (#275)

This commit is contained in:
Ihor Sychevskyi 2022-11-16 01:53:47 +02:00 committed by GitHub
parent 0e0572cf70
commit ac070dba28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
# Check http://editorconfig.org for more information
# Check https://editorconfig.org for more information
# This is the main config file for this project:
root = true

View file

@ -56,7 +56,7 @@ We use GitHub issues to track public bugs. Report a bug by opening a new issue.
### Use a consistent coding style
We use [Black](https://github.com/psf/black) and (working towards) [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) for code and [Google-style](http://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) reStructuredText for doc-strings.
We use [Black](https://github.com/psf/black) and (working towards) [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) for code and [Google-style](https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html) reStructuredText for doc-strings.
<hr>

View file

@ -1,6 +1,6 @@
This software is derived from Django EAV (https://github.com/mvpdev/django-eav)
which, in turn, was derived from EAV Django, originally written and copyrighted
by Andrey Mikhaylenko <http://pypi.python.org/pypi/eav-django>.
by Andrey Mikhaylenko <https://pypi.org/project/eav-django/>.
This is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published

View file

@ -1,7 +1,7 @@
# Sphinx documentation generator configuration.
#
# More information on the configuration options is available at:
# http://www.sphinx-doc.org/en/master/usage/configuration.html
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import os
import sys

View file

@ -3,7 +3,7 @@ This module contains a validator for each :class:`~eav.models.Attribute` datatyp
A validator is a callable that takes a value and raises a ``ValidationError``
if it doesn't meet some criteria (see `Django validators
<http://docs.djangoproject.com/en/dev/ref/validators/>`_).
<https://docs.djangoproject.com/en/dev/ref/validators/>`_).
These validators are called by the
:meth:`~eav.models.Attribute.validate_value` method in the

View file

@ -110,7 +110,7 @@ exclude_lines =
[mypy]
# mypy configurations: http://bit.ly/2zEl9WI
# mypy configurations: https://bit.ly/2zEl9WI
allow_redefinition = False
check_untyped_defs = True