Skip to content

Commit e1bf883

Browse files
committedApr 4, 2021
fix manual gitlab links
1 parent e0116d8 commit e1bf883

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed
 

‎README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ Links
5555

5656
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_
5757

58-
* `GitLab Project <https://gitlab.com/pycqa/flake8>`_
58+
* `GitHub Project <https://github.com/pycqa/flake8>`_
5959

6060
* `All (Open and Closed) Issues
61-
<https://gitlab.com/pycqa/flake8/issues?scope=all&sort=updated_desc&state=all>`_
61+
<https://github.com/pycqa/flake8/issues?q=is%3Aissue>`_
6262

6363
* `Code-Quality Archives
6464
<https://mail.python.org/mailman/listinfo/code-quality>`_

‎docs/source/internal/contributing.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Filing a Bug
5151
============
5252

5353
When filing a bug against |Flake8|, please fill out the issue template as it
54-
is provided to you by `GitLab`_. If your bug is in reference to one of the
54+
is provided to you by `GitHub`_. If your bug is in reference to one of the
5555
checks that |Flake8| reports by default, please do not report them to |Flake8|
5656
unless |Flake8| is doing something to prevent the check from running or you
5757
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.
131131
Contributing Code
132132
=================
133133

134-
|Flake8| development happens on `GitLab`_. Code contributions should be
134+
|Flake8| development happens on `GitHub`_. Code contributions should be
135135
submitted there.
136136

137137
Merge requests should:
@@ -202,8 +202,8 @@ delivered.
202202
.. _tox:
203203
https://tox.readthedocs.io/
204204

205-
.. _GitLab:
206-
https://gitlab.com/pycqa/flake8
205+
.. _GitHub:
206+
https://github.com/pycqa/flake8
207207

208208
.. _pycodestyle:
209209
https://github.com/pycqa/pycodestyle

‎docs/source/manpage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,4 @@ McCabe: https://github.com/pycqa/mccabe
144144
BUGS
145145
====
146146

147-
Please report all bugs to https://gitlab.com/pycqa/flake8
147+
Please report all bugs to https://github.com/pycqa/flake8

‎docs/source/plugin-development/registering-plugins.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ like:
4040
description="our extension to flake8",
4141
author="Me",
4242
author_email="example@example.com",
43-
url="https://gitlab.com/me/flake8_example",
43+
url="https://github.com/me/flake8_example",
4444
packages=[
4545
"flake8_example",
4646
],

‎docs/source/user/using-hooks.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ started is to add this configuration to your ``.pre-commit-config.yaml``:
1010

1111
.. code-block:: yaml
1212
13-
- repo: https://gitlab.com/pycqa/flake8
13+
- repo: https://github.com/pycqa/flake8
1414
rev: '' # pick a git hash / tag to point to
1515
hooks:
1616
- id: flake8

‎example-plugin/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
description='Example plugin to Flake8',
88
author='Ian Cordasco',
99
author_email='graffatcolmingov@gmail.com',
10-
url='https://gitlab.com/pycqa/flake8',
10+
url='https://github.com/pycqa/flake8',
1111
package_dir={'': 'src/'},
1212
packages=['flake8_example_plugin'],
1313
entry_points={

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ author = Tarek Ziade
1212
author_email = tarek@ziade.org
1313
maintainer = Ian Stapleton Cordasco
1414
maintainer_email = graffatcolmingov@gmail.com
15-
url = https://gitlab.com/pycqa/flake8
15+
url = https://github.com/pycqa/flake8
1616
classifiers =
1717
Development Status :: 5 - Production/Stable
1818
Environment :: Console

0 commit comments

Comments
 (0)
Please sign in to comment.