Skip to content

Commit 69e60a5

Browse files
committed
Upgrade pygments to 2.12.0
1 parent 373fca9 commit 69e60a5

38 files changed

+144
-99
lines changed

news/pygments.vendor.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade pygments to 2.12.0

src/pip/_vendor/pygments/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2006-2021 by the respective authors (see AUTHORS file).
1+
Copyright (c) 2006-2022 by the respective authors (see AUTHORS file).
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

src/pip/_vendor/pygments/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
.. _Pygments master branch:
2222
https://github.com/pygments/pygments/archive/master.zip#egg=Pygments-dev
2323
24-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
24+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
2525
:license: BSD, see LICENSE for details.
2626
"""
2727
from io import StringIO, BytesIO
2828

29-
__version__ = '2.11.2'
29+
__version__ = '2.12.0'
3030
__docformat__ = 'restructuredtext'
3131

3232
__all__ = ['lex', 'format', 'highlight']

src/pip/_vendor/pygments/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Main entry point for ``python -m pygments``.
66
7-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
7+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
88
:license: BSD, see LICENSE for details.
99
"""
1010

src/pip/_vendor/pygments/cmdline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Command line interface.
66
7-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
7+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
88
:license: BSD, see LICENSE for details.
99
"""
1010

@@ -185,7 +185,7 @@ def main_inner(parser, argns):
185185
return 0
186186

187187
if argns.V:
188-
print('Pygments version %s, (c) 2006-2021 by Georg Brandl, Matthäus '
188+
print('Pygments version %s, (c) 2006-2022 by Georg Brandl, Matthäus '
189189
'Chajdas and contributors.' % __version__)
190190
return 0
191191

src/pip/_vendor/pygments/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Format colored console output.
66
7-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
7+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
88
:license: BSD, see LICENSE for details.
99
"""
1010

src/pip/_vendor/pygments/filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Module that implements the default filter.
66
7-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
7+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
88
:license: BSD, see LICENSE for details.
99
"""
1010

src/pip/_vendor/pygments/filters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Module containing filter lookup functions and default
66
filters.
77
8-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
8+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
99
:license: BSD, see LICENSE for details.
1010
"""
1111

src/pip/_vendor/pygments/formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Base formatter class.
66
7-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
7+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
88
:license: BSD, see LICENSE for details.
99
"""
1010

src/pip/_vendor/pygments/formatters/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Pygments formatters.
66
7-
:copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
7+
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
88
:license: BSD, see LICENSE for details.
99
"""
1010

0 commit comments

Comments
 (0)