Skip to content

Commit

Permalink
Merge pull request #98 from roskakori/97-update-copyright-year-to-2023
Browse files Browse the repository at this point in the history
#97 Update copyright year to 2023
  • Loading branch information
roskakori committed Dec 31, 2022
2 parents 0e51f62 + ff41ed1 commit 4b4071a
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016-2022, Thomas Aglassinger
Copyright (c) 2016-2023, Thomas Aglassinger
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -- Project information -----------------------------------------------------

project = "pygount"
copyright = "2016-2022, Thomas Aglassinger"
copyright = "2016-2023, Thomas Aglassinger"
author = "Thomas Aglassinger"

# The full version, including alpha/beta/rc tags
Expand Down
2 changes: 1 addition & 1 deletion pygount/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Pygount counts lines of source code using pygments lexers.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import pkg_resources

Expand Down
2 changes: 1 addition & 1 deletion pygount/analysis.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Functions to analyze source code and count lines in it.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import codecs
import collections
Expand Down
2 changes: 1 addition & 1 deletion pygount/command.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Command line interface for pygount.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import argparse
import logging
Expand Down
2 changes: 1 addition & 1 deletion pygount/common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Common classes and functions for pygount.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import contextlib
import fnmatch
Expand Down
2 changes: 1 addition & 1 deletion pygount/lexers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Additional lexers for pygount that fill gaps left by :py:mod:`pygments`.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import pygments.lexer
import pygments.lexers
Expand Down
2 changes: 1 addition & 1 deletion pygount/summary.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Summaries of analyses of multiple source codes.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import functools
import re
Expand Down
2 changes: 1 addition & 1 deletion pygount/write.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Writers to store the results of a pygount analysis.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import datetime
import json
Expand Down
2 changes: 1 addition & 1 deletion pygount/xmldialect.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Function to obtain the language dialect used by XML source code.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import logging
import re
Expand Down
2 changes: 1 addition & 1 deletion tests/_common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Common constants and functions used by multiple tests.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import os
import shutil
Expand Down
2 changes: 1 addition & 1 deletion tests/test_analysis.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests for pygount source code analysis.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import glob
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/test_command.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests for pygount command line interface.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import json
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests for :py:mod:`pygount.common` module.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import re

Expand Down
2 changes: 1 addition & 1 deletion tests/test_lexers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests for additional lexers for pygount.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.

from pygments import token
Expand Down
2 changes: 1 addition & 1 deletion tests/test_summary.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests to summarize analyses of multiple source codes.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
from pygount.analysis import SourceAnalysis, SourceState
from pygount.summary import LanguageSummary, ProjectSummary
Expand Down
2 changes: 1 addition & 1 deletion tests/test_write.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Test to write results of pygount analyses.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import io
import re
Expand Down
2 changes: 1 addition & 1 deletion tests/test_xmldialect.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests for function to obtain the language dialect used by XML source code.
"""
# Copyright (c) 2016-2022, Thomas Aglassinger.
# Copyright (c) 2016-2023, Thomas Aglassinger.
# All rights reserved. Distributed under the BSD License.
import pygount.xmldialect

Expand Down

0 comments on commit 4b4071a

Please sign in to comment.