From 87f644157dcee37737e065d63420d67a58c930b5 Mon Sep 17 00:00:00 2001 From: Lars Date: Wed, 7 Feb 2024 22:39:50 +0100 Subject: [PATCH] Updated year from 2023 to 2024 --- LICENSE | 2 +- docs/conf.py | 2 +- noxfile.py | 2 +- segno/__init__.py | 2 +- segno/cli.py | 2 +- segno/consts.py | 2 +- segno/encoder.py | 2 +- segno/helpers.py | 2 +- segno/utils.py | 2 +- segno/writers.py | 2 +- tests/alltests.py | 2 +- tests/test_boosterror.py | 2 +- tests/test_cli.py | 2 +- tests/test_cli_colorful.py | 2 +- tests/test_colors.py | 2 +- tests/test_covid_cert.py | 2 +- tests/test_data_uri.py | 2 +- tests/test_encode_decode.py | 2 +- tests/test_encoder.py | 2 +- tests/test_eps.py | 2 +- tests/test_hanzi.py | 2 +- tests/test_helpers.py | 2 +- tests/test_helpers_epcqr.py | 2 +- tests/test_issue124_trailing_geo_dot.py | 2 +- tests/test_issue18.py | 2 +- tests/test_issue23_boosterror.py | 2 +- tests/test_issue3.py | 2 +- tests/test_issue32_svg2.py | 2 +- tests/test_issue33_microcode.py | 2 +- tests/test_issue34_errorlevel.py | 2 +- tests/test_issue35_maskcheck.py | 2 +- tests/test_issue39_unquoted.py | 2 +- tests/test_issue4.py | 2 +- tests/test_issue45_cli_returncodes.py | 2 +- tests/test_issue54_png_greyscale.py | 2 +- tests/test_issue65_colorful_datauris.py | 2 +- tests/test_issue71_colormap.py | 2 +- tests/test_issue72_epc_encoding_name.py | 2 +- tests/test_issue82_svg_inline.py | 2 +- tests/test_issue84_cli_encoding.py | 2 +- tests/test_issue95_wifi.py | 6 +----- tests/test_issue_105_epc_slash.py | 2 +- tests/test_issue_109_bytes.py | 2 +- tests/test_issue_125.py | 2 +- tests/test_kanji.py | 2 +- tests/test_make.py | 2 +- tests/test_output.py | 2 +- tests/test_pam.py | 2 +- tests/test_pbm.py | 2 +- tests/test_pdf.py | 2 +- tests/test_plugin.py | 2 +- tests/test_png.py | 2 +- tests/test_png_colorful.py | 2 +- tests/test_png_plte.py | 2 +- tests/test_ppm.py | 2 +- tests/test_pyqrcode_issue10_17.py | 2 +- tests/test_pyqrcodeng_issue13.py | 2 +- tests/test_pyqrcodeng_issue15.py | 2 +- tests/test_qrcode.py | 2 +- tests/test_structured_append.py | 2 +- tests/test_svg.py | 2 +- tests/test_svg_colorful.py | 2 +- tests/test_terminal.py | 2 +- tests/test_tex.py | 2 +- tests/test_txt.py | 2 +- tests/test_utils.py | 2 +- tests/test_utils_iterverbose.py | 2 +- tests/test_writers.py | 2 +- tests/test_xbm.py | 2 +- tests/test_xpm.py | 2 +- tests/tutils.py | 2 +- 71 files changed, 71 insertions(+), 75 deletions(-) diff --git a/LICENSE b/LICENSE index 75a56bb1..e7708621 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016 - 2023, Lars Heuer +Copyright (c) 2016 - 2024, Lars Heuer All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/docs/conf.py b/docs/conf.py index 464c286f..d4a34b7b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,7 +55,7 @@ # General information about the project. project = 'Segno' -copyright = '2016 - 2023 Lars Heuer -- "QR Code" and "Micro QR Code" are registered trademarks of DENSO WAVE INCORPORATED.' +copyright = '2016 - 2024 Lars Heuer -- "QR Code" and "Micro QR Code" are registered trademarks of DENSO WAVE INCORPORATED.' author = 'Lars Heuer' # The version info for the project you're documenting, acts as replacement for diff --git a/noxfile.py b/noxfile.py index 66672435..70b727ea 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/__init__.py b/segno/__init__.py index f4e3f141..cb1b2668 100644 --- a/segno/__init__.py +++ b/segno/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/cli.py b/segno/cli.py index 5cbdab36..1a7bf9cf 100644 --- a/segno/cli.py +++ b/segno/cli.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/consts.py b/segno/consts.py index a189c3c8..20ef36c2 100644 --- a/segno/consts.py +++ b/segno/consts.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/encoder.py b/segno/encoder.py index 86c03bdf..02d3aa0e 100644 --- a/segno/encoder.py +++ b/segno/encoder.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/helpers.py b/segno/helpers.py index 535fb694..b42ca7ec 100644 --- a/segno/helpers.py +++ b/segno/helpers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/utils.py b/segno/utils.py index 8b39025b..5a8c5ef9 100644 --- a/segno/utils.py +++ b/segno/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/segno/writers.py b/segno/writers.py index e1e81d3d..cb4100fd 100644 --- a/segno/writers.py +++ b/segno/writers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/alltests.py b/tests/alltests.py index d1b0138d..41b4cdf0 100644 --- a/tests/alltests.py +++ b/tests/alltests.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_boosterror.py b/tests/test_boosterror.py index 333fd9e7..3014e46d 100644 --- a/tests/test_boosterror.py +++ b/tests/test_boosterror.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_cli.py b/tests/test_cli.py index 330ce55b..cdc5f5fe 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_cli_colorful.py b/tests/test_cli_colorful.py index c012b24b..74d37c97 100644 --- a/tests/test_cli_colorful.py +++ b/tests/test_cli_colorful.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_colors.py b/tests/test_colors.py index c5c78d08..62459613 100644 --- a/tests/test_colors.py +++ b/tests/test_colors.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_covid_cert.py b/tests/test_covid_cert.py index 91bd1c29..4af36999 100644 --- a/tests/test_covid_cert.py +++ b/tests/test_covid_cert.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_data_uri.py b/tests/test_data_uri.py index 81578dc9..d28958d3 100644 --- a/tests/test_data_uri.py +++ b/tests/test_data_uri.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_encode_decode.py b/tests/test_encode_decode.py index a8c01813..34b19c5a 100644 --- a/tests/test_encode_decode.py +++ b/tests/test_encode_decode.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2020 - 2023 -- Lars Heuer +# Copyright (c) 2020 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_encoder.py b/tests/test_encoder.py index 725d0d97..79676334 100644 --- a/tests/test_encoder.py +++ b/tests/test_encoder.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_eps.py b/tests/test_eps.py index 7135096c..ce2961b8 100644 --- a/tests/test_eps.py +++ b/tests/test_eps.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_hanzi.py b/tests/test_hanzi.py index 33345128..1a83be43 100644 --- a/tests/test_hanzi.py +++ b/tests/test_hanzi.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2020 -- Shi Yan +# Copyright (c) 2016 - 2024 -- Shi Yan # All rights reserved. # # License: BSD License diff --git a/tests/test_helpers.py b/tests/test_helpers.py index 284c7899..93d9e3b4 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_helpers_epcqr.py b/tests/test_helpers_epcqr.py index 016e80ce..a39b0c61 100644 --- a/tests/test_helpers_epcqr.py +++ b/tests/test_helpers_epcqr.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue124_trailing_geo_dot.py b/tests/test_issue124_trailing_geo_dot.py index 80aaa26f..a8647e57 100644 --- a/tests/test_issue124_trailing_geo_dot.py +++ b/tests/test_issue124_trailing_geo_dot.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2023 -- Lars Heuer +# Copyright (c) 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue18.py b/tests/test_issue18.py index 34a498ed..49a67013 100644 --- a/tests/test_issue18.py +++ b/tests/test_issue18.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue23_boosterror.py b/tests/test_issue23_boosterror.py index 7d0651a6..f5bc10f0 100644 --- a/tests/test_issue23_boosterror.py +++ b/tests/test_issue23_boosterror.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue3.py b/tests/test_issue3.py index 331f9770..2cc7c789 100644 --- a/tests/test_issue3.py +++ b/tests/test_issue3.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue32_svg2.py b/tests/test_issue32_svg2.py index b252f4ff..d6e198fd 100644 --- a/tests/test_issue32_svg2.py +++ b/tests/test_issue32_svg2.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue33_microcode.py b/tests/test_issue33_microcode.py index d2982593..ba7f0498 100644 --- a/tests/test_issue33_microcode.py +++ b/tests/test_issue33_microcode.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue34_errorlevel.py b/tests/test_issue34_errorlevel.py index 30ba1a16..c7e7cd77 100644 --- a/tests/test_issue34_errorlevel.py +++ b/tests/test_issue34_errorlevel.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue35_maskcheck.py b/tests/test_issue35_maskcheck.py index 9affb003..d2ed38b3 100644 --- a/tests/test_issue35_maskcheck.py +++ b/tests/test_issue35_maskcheck.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue39_unquoted.py b/tests/test_issue39_unquoted.py index e0515022..85279f53 100644 --- a/tests/test_issue39_unquoted.py +++ b/tests/test_issue39_unquoted.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue4.py b/tests/test_issue4.py index 2d54f030..b88b7862 100644 --- a/tests/test_issue4.py +++ b/tests/test_issue4.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue45_cli_returncodes.py b/tests/test_issue45_cli_returncodes.py index 085ee85d..4a6f5fa5 100644 --- a/tests/test_issue45_cli_returncodes.py +++ b/tests/test_issue45_cli_returncodes.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue54_png_greyscale.py b/tests/test_issue54_png_greyscale.py index 09acf64e..05e5c3b2 100644 --- a/tests/test_issue54_png_greyscale.py +++ b/tests/test_issue54_png_greyscale.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue65_colorful_datauris.py b/tests/test_issue65_colorful_datauris.py index c42f44b4..aa0df802 100644 --- a/tests/test_issue65_colorful_datauris.py +++ b/tests/test_issue65_colorful_datauris.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue71_colormap.py b/tests/test_issue71_colormap.py index d188bdde..a17ea434 100644 --- a/tests/test_issue71_colormap.py +++ b/tests/test_issue71_colormap.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue72_epc_encoding_name.py b/tests/test_issue72_epc_encoding_name.py index 0bbc727b..55175e34 100644 --- a/tests/test_issue72_epc_encoding_name.py +++ b/tests/test_issue72_epc_encoding_name.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue82_svg_inline.py b/tests/test_issue82_svg_inline.py index 6a36d6c7..cd9e8535 100644 --- a/tests/test_issue82_svg_inline.py +++ b/tests/test_issue82_svg_inline.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue84_cli_encoding.py b/tests/test_issue84_cli_encoding.py index 7fb0c447..a38d9785 100644 --- a/tests/test_issue84_cli_encoding.py +++ b/tests/test_issue84_cli_encoding.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue95_wifi.py b/tests/test_issue95_wifi.py index 0c1b6af7..5e11fb73 100644 --- a/tests/test_issue95_wifi.py +++ b/tests/test_issue95_wifi.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License @@ -33,10 +33,6 @@ import segno from segno import helpers _qr_decoder_available = False -try: - FileNotFoundError -except NameError: # Py2 - FileNotFoundError = OSError try: from pyzbar.pyzbar import decode as zbardecode _qr_decoder_available = True diff --git a/tests/test_issue_105_epc_slash.py b/tests/test_issue_105_epc_slash.py index ac36fc4e..2e4a5c0f 100644 --- a/tests/test_issue_105_epc_slash.py +++ b/tests/test_issue_105_epc_slash.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2022 - 2023 -- Lars Heuer +# Copyright (c) 2022 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue_109_bytes.py b/tests/test_issue_109_bytes.py index 92714e56..efa62815 100644 --- a/tests/test_issue_109_bytes.py +++ b/tests/test_issue_109_bytes.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2022 -2023 -- Lars Heuer +# Copyright (c) 2022 -2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_issue_125.py b/tests/test_issue_125.py index a76d8b54..e9c12b26 100644 --- a/tests/test_issue_125.py +++ b/tests/test_issue_125.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_kanji.py b/tests/test_kanji.py index 2cea535b..0a88f59c 100644 --- a/tests/test_kanji.py +++ b/tests/test_kanji.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_make.py b/tests/test_make.py index f9f01ab3..a69f8fc4 100644 --- a/tests/test_make.py +++ b/tests/test_make.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_output.py b/tests/test_output.py index 56b14654..59f7a581 100644 --- a/tests/test_output.py +++ b/tests/test_output.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_pam.py b/tests/test_pam.py index 417528a1..23e0b389 100644 --- a/tests/test_pam.py +++ b/tests/test_pam.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_pbm.py b/tests/test_pbm.py index 1425a9ac..17346ab5 100644 --- a/tests/test_pbm.py +++ b/tests/test_pbm.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_pdf.py b/tests/test_pdf.py index 39da567c..0c2bf136 100644 --- a/tests/test_pdf.py +++ b/tests/test_pdf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_plugin.py b/tests/test_plugin.py index fb0e43a6..3293ba1b 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_png.py b/tests/test_png.py index 3faa9b75..5c975f76 100644 --- a/tests/test_png.py +++ b/tests/test_png.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_png_colorful.py b/tests/test_png_colorful.py index 7270eabc..95699ac4 100644 --- a/tests/test_png_colorful.py +++ b/tests/test_png_colorful.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_png_plte.py b/tests/test_png_plte.py index c1ea3b24..a71c7fe5 100644 --- a/tests/test_png_plte.py +++ b/tests/test_png_plte.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_ppm.py b/tests/test_ppm.py index 6aaa279f..77984a30 100644 --- a/tests/test_ppm.py +++ b/tests/test_ppm.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_pyqrcode_issue10_17.py b/tests/test_pyqrcode_issue10_17.py index 892285c3..a680828e 100644 --- a/tests/test_pyqrcode_issue10_17.py +++ b/tests/test_pyqrcode_issue10_17.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_pyqrcodeng_issue13.py b/tests/test_pyqrcodeng_issue13.py index 57317f0f..35d4c2e8 100644 --- a/tests/test_pyqrcodeng_issue13.py +++ b/tests/test_pyqrcodeng_issue13.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_pyqrcodeng_issue15.py b/tests/test_pyqrcodeng_issue15.py index c4555f65..5456bf6a 100644 --- a/tests/test_pyqrcodeng_issue15.py +++ b/tests/test_pyqrcodeng_issue15.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_qrcode.py b/tests/test_qrcode.py index bc70dfe5..d88807c2 100644 --- a/tests/test_qrcode.py +++ b/tests/test_qrcode.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_structured_append.py b/tests/test_structured_append.py index 3f0e415a..da82fc09 100644 --- a/tests/test_structured_append.py +++ b/tests/test_structured_append.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_svg.py b/tests/test_svg.py index 18cc64fb..5c885a3b 100644 --- a/tests/test_svg.py +++ b/tests/test_svg.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_svg_colorful.py b/tests/test_svg_colorful.py index df474a07..bab47cf2 100644 --- a/tests/test_svg_colorful.py +++ b/tests/test_svg_colorful.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_terminal.py b/tests/test_terminal.py index 1af859b1..23df244d 100644 --- a/tests/test_terminal.py +++ b/tests/test_terminal.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_tex.py b/tests/test_tex.py index 0f775973..1a0ffa93 100644 --- a/tests/test_tex.py +++ b/tests/test_tex.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_txt.py b/tests/test_txt.py index 65fecb3b..4196bc81 100644 --- a/tests/test_txt.py +++ b/tests/test_txt.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_utils.py b/tests/test_utils.py index 9b9c654f..64d53460 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_utils_iterverbose.py b/tests/test_utils_iterverbose.py index 65f0977b..f9c80369 100644 --- a/tests/test_utils_iterverbose.py +++ b/tests/test_utils_iterverbose.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_writers.py b/tests/test_writers.py index f897c751..8c8f8194 100644 --- a/tests/test_writers.py +++ b/tests/test_writers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_xbm.py b/tests/test_xbm.py index 97329daf..322df50f 100644 --- a/tests/test_xbm.py +++ b/tests/test_xbm.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/test_xpm.py b/tests/test_xpm.py index 3ae405df..9d6fd5df 100644 --- a/tests/test_xpm.py +++ b/tests/test_xpm.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License diff --git a/tests/tutils.py b/tests/tutils.py index 494c25a6..6eb0bea9 100644 --- a/tests/tutils.py +++ b/tests/tutils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (c) 2016 - 2023 -- Lars Heuer +# Copyright (c) 2016 - 2024 -- Lars Heuer # All rights reserved. # # License: BSD License