diff --git a/README.rst b/README.rst index a182b9b..41e680d 100644 --- a/README.rst +++ b/README.rst @@ -55,10 +55,10 @@ Links * `Flake8 Documentation `_ -* `GitLab Project `_ +* `GitHub Project `_ * `All (Open and Closed) Issues - `_ + `_ * `Code-Quality Archives `_ diff --git a/docs/source/internal/contributing.rst b/docs/source/internal/contributing.rst index d5c8d8d..26cc029 100644 --- a/docs/source/internal/contributing.rst +++ b/docs/source/internal/contributing.rst @@ -51,7 +51,7 @@ Filing a Bug ============ When filing a bug against |Flake8|, please fill out the issue template as it -is provided to you by `GitLab`_. If your bug is in reference to one of the +is provided to you by `GitHub`_. If your bug is in reference to one of the checks that |Flake8| reports by default, please do not report them to |Flake8| unless |Flake8| is doing something to prevent the check from running or you have some reason to believe |Flake8| is inhibiting the effectiveness of the @@ -131,7 +131,7 @@ documentation generation and refresh the documentation you're working on. Contributing Code ================= -|Flake8| development happens on `GitLab`_. Code contributions should be +|Flake8| development happens on `GitHub`_. Code contributions should be submitted there. Merge requests should: @@ -202,8 +202,8 @@ delivered. .. _tox: https://tox.readthedocs.io/ -.. _GitLab: - https://gitlab.com/pycqa/flake8 +.. _GitHub: + https://github.com/pycqa/flake8 .. _pycodestyle: https://github.com/pycqa/pycodestyle diff --git a/docs/source/manpage.rst b/docs/source/manpage.rst index 826ec8b..9636b1f 100644 --- a/docs/source/manpage.rst +++ b/docs/source/manpage.rst @@ -144,4 +144,4 @@ McCabe: https://github.com/pycqa/mccabe BUGS ==== -Please report all bugs to https://gitlab.com/pycqa/flake8 +Please report all bugs to https://github.com/pycqa/flake8 diff --git a/docs/source/plugin-development/registering-plugins.rst b/docs/source/plugin-development/registering-plugins.rst index d1718bf..b9e87fb 100644 --- a/docs/source/plugin-development/registering-plugins.rst +++ b/docs/source/plugin-development/registering-plugins.rst @@ -40,7 +40,7 @@ like: description="our extension to flake8", author="Me", author_email="example@example.com", - url="https://gitlab.com/me/flake8_example", + url="https://github.com/me/flake8_example", packages=[ "flake8_example", ], diff --git a/docs/source/user/using-hooks.rst b/docs/source/user/using-hooks.rst index d8af5f8..5a2e2b0 100644 --- a/docs/source/user/using-hooks.rst +++ b/docs/source/user/using-hooks.rst @@ -10,7 +10,7 @@ started is to add this configuration to your ``.pre-commit-config.yaml``: .. code-block:: yaml - - repo: https://gitlab.com/pycqa/flake8 + - repo: https://github.com/pycqa/flake8 rev: '' # pick a git hash / tag to point to hooks: - id: flake8 diff --git a/example-plugin/setup.py b/example-plugin/setup.py index 0facd57..ee125db 100644 --- a/example-plugin/setup.py +++ b/example-plugin/setup.py @@ -7,7 +7,7 @@ setuptools.setup( description='Example plugin to Flake8', author='Ian Cordasco', author_email='graffatcolmingov@gmail.com', - url='https://gitlab.com/pycqa/flake8', + url='https://github.com/pycqa/flake8', package_dir={'': 'src/'}, packages=['flake8_example_plugin'], entry_points={ diff --git a/setup.cfg b/setup.cfg index 5ad0bb6..1c54260 100644 --- a/setup.cfg +++ b/setup.cfg @@ -12,7 +12,7 @@ author = Tarek Ziade author_email = tarek@ziade.org maintainer = Ian Stapleton Cordasco maintainer_email = graffatcolmingov@gmail.com -url = https://gitlab.com/pycqa/flake8 +url = https://github.com/pycqa/flake8 classifiers = Development Status :: 5 - Production/Stable Environment :: Console