summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMatthäus G. Chajdas <dev@anteru.net>2023-03-29 21:08:17 +0200
committerMatthäus G. Chajdas <dev@anteru.net>2023-03-29 21:11:12 +0200
commita1361035ec5f599290371f7df9f21e3f1f1420a6 (patch)
treea459276ac670adcc55d68bf4084caa5366db19d6 /scripts
parent9b4af216900704b05040f6314138c8621898c10c (diff)
downloadpygments-git-a1361035ec5f599290371f7df9f21e3f1f1420a6.tar.gz
Update copyright year to 2023.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check_crlf.py2
-rwxr-xr-xscripts/check_repeated_token.py2
-rwxr-xr-xscripts/check_sources.py4
-rw-r--r--scripts/check_whitespace_token.py2
-rwxr-xr-xscripts/debug_lexer.py2
-rw-r--r--scripts/detect_missing_analyse_text.py2
-rw-r--r--scripts/gen_mapfiles.py2
-rw-r--r--scripts/get_css_properties.py4
-rw-r--r--scripts/get_vimkw.py2
-rw-r--r--scripts/utility.py2
-rwxr-xr-xscripts/vim2pygments.py2
11 files changed, 13 insertions, 13 deletions
diff --git a/scripts/check_crlf.py b/scripts/check_crlf.py
index c03b68df..1b5c3b52 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 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 2c2d8240..7212cb66 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 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 f625cb19..0af646db 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 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-2022 by '
+copyright_re = re.compile(r'^ :copyright: Copyright 2006-2023 by '
r'the Pygments team, see AUTHORS\.$')
copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' %
(name_mail_re, name_mail_re))
diff --git a/scripts/check_whitespace_token.py b/scripts/check_whitespace_token.py
index 507875c7..ebe3dd3c 100644
--- a/scripts/check_whitespace_token.py
+++ b/scripts/check_whitespace_token.py
@@ -5,7 +5,7 @@
Helper script to find whitespace which is not of token type `Whitespace`
- :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import argparse
diff --git a/scripts/debug_lexer.py b/scripts/debug_lexer.py
index 9bf14a81..12101463 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 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 c377b0b6..d915f78e 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/gen_mapfiles.py b/scripts/gen_mapfiles.py
index bb434e11..e2b64a03 100644
--- a/scripts/gen_mapfiles.py
+++ b/scripts/gen_mapfiles.py
@@ -4,7 +4,7 @@
Regenerate mapping files.
- :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/get_css_properties.py b/scripts/get_css_properties.py
index 85a077aa..96204f76 100644
--- a/scripts/get_css_properties.py
+++ b/scripts/get_css_properties.py
@@ -2,7 +2,7 @@
get_css_properties
~~~~~~~~~~~~~~~~~~
- :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
@@ -18,7 +18,7 @@ HEADER = '''\
This file is autogenerated by scripts/get_css_properties.py
- :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 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 0b2d82ec..55bad063 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/utility.py b/scripts/utility.py
index 6f02538d..d16a5986 100644
--- a/scripts/utility.py
+++ b/scripts/utility.py
@@ -2,7 +2,7 @@
Utility functions for test scripts
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
diff --git a/scripts/vim2pygments.py b/scripts/vim2pygments.py
index ec9b63b7..fea05652 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-2022 by the Pygments team, see AUTHORS.
+ :copyright: Copyright 2006-2023 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""