From 656f546d12421b31c84db2ae1842542e1dabc3fa Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Tue, 16 Dec 2025 13:42:16 -0800 Subject: [PATCH] copyright updates --- docs/source/conf.py | 2 +- pycmx/channel_map.py | 2 +- pycmx/edit.py | 2 +- pycmx/edit_list.py | 2 +- pycmx/event.py | 2 +- pycmx/parse_cmx_events.py | 2 +- pycmx/parse_cmx_statements.py | 2 +- pycmx/statements.py | 3 +++ pycmx/util.py | 2 +- 9 files changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index c7f0f0d..ac8fd02 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ sys.path.insert(0, os.path.abspath('../..')) # -- Project information ----------------------------------------------------- project = u'pycmx' -copyright = u'(c) 2025, Jamie Hardt' +copyright = u'(c) 2018-2025, Jamie Hardt' author = u'Jamie Hardt' release = importlib.metadata.version("pycmx") diff --git a/pycmx/channel_map.py b/pycmx/channel_map.py index a8afea0..3783539 100644 --- a/pycmx/channel_map.py +++ b/pycmx/channel_map.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2018 Jamie Hardt +# (c) 2018-2025 Jamie Hardt from re import (compile, match) from typing import Dict, Tuple, Generator diff --git a/pycmx/edit.py b/pycmx/edit.py index a68532f..e68f411 100644 --- a/pycmx/edit.py +++ b/pycmx/edit.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2018 Jamie Hardt +# (c) 2018-2025 Jamie Hardt from pycmx.statements import StmtCdlSat, StmtCdlSop, StmtFrmc from .transition import Transition diff --git a/pycmx/edit_list.py b/pycmx/edit_list.py index ae9d774..3021d85 100644 --- a/pycmx/edit_list.py +++ b/pycmx/edit_list.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2018 Jamie Hardt +# (c) 2018-2025 Jamie Hardt from pycmx.statements import StmtTitle from .parse_cmx_statements import ( diff --git a/pycmx/event.py b/pycmx/event.py index 57f97e2..35082b8 100644 --- a/pycmx/event.py +++ b/pycmx/event.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2023 Jamie Hardt +# (c) 2023-2025 Jamie Hardt from pycmx.statements import StmtFrmc from .parse_cmx_statements import ( diff --git a/pycmx/parse_cmx_events.py b/pycmx/parse_cmx_events.py index 76b91e1..65f5630 100644 --- a/pycmx/parse_cmx_events.py +++ b/pycmx/parse_cmx_events.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2025 Jamie Hardt +# (c) 2018-2025 Jamie Hardt from typing import TextIO diff --git a/pycmx/parse_cmx_statements.py b/pycmx/parse_cmx_statements.py index 000426c..92ec89e 100644 --- a/pycmx/parse_cmx_statements.py +++ b/pycmx/parse_cmx_statements.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2018 Jamie Hardt +# (c) 2018-2025 Jamie Hardt import re from typing import TextIO, List diff --git a/pycmx/statements.py b/pycmx/statements.py index 41790db..d1e604d 100644 --- a/pycmx/statements.py +++ b/pycmx/statements.py @@ -1,3 +1,6 @@ +# pycmx +# (c) 2025 Jamie Hardt + from collections import namedtuple from typing import NamedTuple diff --git a/pycmx/util.py b/pycmx/util.py index fbaff41..3bd0fe0 100644 --- a/pycmx/util.py +++ b/pycmx/util.py @@ -1,5 +1,5 @@ # pycmx -# (c) 2018 Jamie Hardt +# (c) 2018-2025 Jamie Hardt # Utility functions