summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2022-01-25 07:36:28 +0100
committerGeorg Brandl <georg@python.org>2022-01-25 07:36:28 +0100
commitab4afd821aa41403f7a0b1e714112c40b2ad843b (patch)
tree0c85bfe605d166949e296e751bf9378f839bc5b2 /scripts
parent74af2e2eb2002c7a1c8d138b6c0ccde98380ff2a (diff)
downloadpygments-git-ab4afd821aa41403f7a0b1e714112c40b2ad843b.tar.gz
Happy new year.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check_crlf.py2
-rwxr-xr-xscripts/check_repeated_token.py2
-rwxr-xr-xscripts/check_sources.py4
-rwxr-xr-xscripts/debug_lexer.py2
-rw-r--r--scripts/detect_missing_analyse_text.py2
-rw-r--r--scripts/get_vimkw.py2
-rwxr-xr-xscripts/vim2pygments.py2
7 files changed, 8 insertions, 8 deletions
diff --git a/scripts/check_crlf.py b/scripts/check_crlf.py
index 7171978f..c03b68df 100644
--- a/scripts/check_crlf.py
+++ b/scripts/check_crlf.py
@@ -6,7 +6,7 @@
Make sure Python (.py) and Bash completion (.bashcomp) files do not
contain CR/LF newlines.
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/check_repeated_token.py b/scripts/check_repeated_token.py
index e747357a..7226098d 100755
--- a/scripts/check_repeated_token.py
+++ b/scripts/check_repeated_token.py
@@ -23,7 +23,7 @@
bloated output and are usually an indication that someone is missing a + or *
in the regex.
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import argparse
diff --git a/scripts/check_sources.py b/scripts/check_sources.py
index cd3409ff..612a7ef1 100755
--- a/scripts/check_sources.py
+++ b/scripts/check_sources.py
@@ -6,7 +6,7 @@
Make sure each Python file has a correct file header
including copyright and license information.
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
@@ -33,7 +33,7 @@ def checker(*suffixes, **kwds):
name_mail_re = r'[\w ]+(<.*?>)?'
-copyright_re = re.compile(r'^ :copyright: Copyright 2006-2021 by '
+copyright_re = re.compile(r'^ :copyright: Copyright 2006-2022 by '
r'the Pygments team, see AUTHORS\.$', re.UNICODE)
copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' %
(name_mail_re, name_mail_re), re.UNICODE)
diff --git a/scripts/debug_lexer.py b/scripts/debug_lexer.py
index 0633dd70..6323d9c3 100755
--- a/scripts/debug_lexer.py
+++ b/scripts/debug_lexer.py
@@ -7,7 +7,7 @@
the text where Error tokens are being generated, along
with some context.
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/detect_missing_analyse_text.py b/scripts/detect_missing_analyse_text.py
index 8b0d14b3..fa95c47a 100644
--- a/scripts/detect_missing_analyse_text.py
+++ b/scripts/detect_missing_analyse_text.py
@@ -2,7 +2,7 @@
detect_missing_analyse_text
~~~~~~~~~~~~~~~~~~~~~~~~~~~
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/get_vimkw.py b/scripts/get_vimkw.py
index 20650a73..0b2d82ec 100644
--- a/scripts/get_vimkw.py
+++ b/scripts/get_vimkw.py
@@ -14,7 +14,7 @@ HEADER = '''\
This file is autogenerated by scripts/get_vimkw.py
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/vim2pygments.py b/scripts/vim2pygments.py
index b6831695..ec9b63b7 100755
--- a/scripts/vim2pygments.py
+++ b/scripts/vim2pygments.py
@@ -6,7 +6,7 @@
This script converts vim colorscheme files to valid pygments
style classes meant for putting into modules.
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""