From 2eff088a5f3c8923ae9eb1d712c27518cd0c2385 Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Thu, 22 Jan 2026 12:53:53 -0800 Subject: [PATCH 1/4] Update wheel version in requirements-dev.txt --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 29d05c3..a307bc6 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ ruff==0.13.3 pytest==8.4.1 pytest-cov==6.2.1 -wheel==0.45.1 +wheel==0.46.3 build==1.3.0 twine==6.2.0 From b81f9faeba640f60e4cd008e76bec4a8354c9ee2 Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Mon, 26 Jan 2026 16:24:23 -0800 Subject: [PATCH 2/4] Update dependencies and copyright year --- CHANGES.rst | 44 +++++++++++++++++++ conftest.py | 2 +- docs/conf.py | 2 +- docs/environment.yaml | 13 +++--- docs/requirements.txt | 20 ++++----- requirements-dev.txt | 10 ++--- requirements.txt | 4 +- setup.py | 2 +- tests/guest/test_guest_appearances.py | 2 +- tests/guest/test_guest_guest.py | 2 +- tests/guest/test_guest_utility.py | 2 +- tests/host/test_host_appearances.py | 2 +- tests/host/test_host_host.py | 2 +- tests/host/test_host_utility.py | 2 +- tests/location/test_location_location.py | 2 +- tests/location/test_location_recordings.py | 2 +- tests/location/test_location_utility.py | 2 +- tests/panelist/test_panelist_appearances.py | 2 +- .../panelist/test_panelist_decimal_scores.py | 2 +- tests/panelist/test_panelist_panelist.py | 2 +- tests/panelist/test_panelist_scores.py | 2 +- tests/panelist/test_panelist_statistics.py | 2 +- tests/panelist/test_panelist_utility.py | 2 +- tests/pronoun/test_pronoun_pronouns.py | 2 +- .../test_scorekeeper_appearances.py | 2 +- .../test_scorekeeper_scorekeeper.py | 2 +- tests/scorekeeper/test_scorekeeper_utility.py | 2 +- tests/show/test_show_info.py | 2 +- tests/show/test_show_info_multiple.py | 2 +- tests/show/test_show_show.py | 2 +- tests/show/test_show_utility.py | 2 +- tests/test_init.py | 2 +- tests/test_validation.py | 2 +- wwdtm/__init__.py | 4 +- wwdtm/guest/__init__.py | 2 +- wwdtm/guest/appearances.py | 2 +- wwdtm/guest/guest.py | 2 +- wwdtm/guest/utility.py | 2 +- wwdtm/host/__init__.py | 2 +- wwdtm/host/appearances.py | 2 +- wwdtm/host/host.py | 2 +- wwdtm/host/utility.py | 2 +- wwdtm/location/__init__.py | 2 +- wwdtm/location/location.py | 2 +- wwdtm/location/recordings.py | 2 +- wwdtm/location/utility.py | 2 +- wwdtm/panelist/__init__.py | 2 +- wwdtm/panelist/appearances.py | 2 +- wwdtm/panelist/decimal_scores.py | 2 +- wwdtm/panelist/panelist.py | 2 +- wwdtm/panelist/scores.py | 2 +- wwdtm/panelist/statistics.py | 2 +- wwdtm/panelist/utility.py | 2 +- wwdtm/pronoun/__init__.py | 2 +- wwdtm/pronoun/pronouns.py | 2 +- wwdtm/scorekeeper/__init__.py | 2 +- wwdtm/scorekeeper/appearances.py | 2 +- wwdtm/scorekeeper/scorekeeper.py | 2 +- wwdtm/scorekeeper/utility.py | 2 +- wwdtm/show/__init__.py | 2 +- wwdtm/show/info.py | 2 +- wwdtm/show/info_multiple.py | 2 +- wwdtm/show/show.py | 2 +- wwdtm/show/utility.py | 2 +- wwdtm/validation.py | 2 +- 65 files changed, 129 insertions(+), 84 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 0ac2062..f4effb4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,50 @@ Changes ******* +2.22.0 +====== + +Application Changes +------------------- + +* No changes to application code +* Updated copyright end year from 2025 to 2026 + +Component Changes +----------------- + +* Upgraded MySQL Connector/Python from 9.4.0 to 9.5.0 +* Upgraded NumPy from 2.3.3 to 2.4.1 + +Development Changes +------------------- + +* Upgraded pytest from 8.4.1 to 9.0.2 +* Upgraded pytest-cov from 6.2.1 to 7.0.0 +* Upgraded Ruff from 0.13.3 to 0.14.14 +* Upgraded wheel from 0.45.1 to 0.46.3 + +Documentation Changes +--------------------- + +* Upgraded application component changes + + * Upgraded MySQL Connector/Python from 9.4.0 to 9.5.0 + * Upgraded NumPy from 2.3.3 to 2.4.1 + +* Upgraded development component changes + + * Upgraded pytest from 8.4.1 to 9.0.2 + +* Upgraded NumPy from 2.3.3 to 2.4.1 +* Upgraded Sphinx from 8.2.3 to 9.1.0 +* Upgraded sphinx-autobuild from 2024.10.3 to 2025.8.25 +* Upgraded sphinx-autodoc-typehints from 3.2.0 to 3.6.2 +* Upgraded sphinx-toolbox from 4.0.0 to 4.1.2 +* Upgraded sphinx-opengraph from 0.12.0 to 0.13.0 +* Upgraded furo from 2025.9.25 to 2025.12.19 +* Upgraded matplotlib from 3.10.5 to 3.10.8 + 2.21.1 ====== diff --git a/conftest.py b/conftest.py index fb61eb0..18a38db 100644 --- a/conftest.py +++ b/conftest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/docs/conf.py b/docs/conf.py index 34b83fd..72dd841 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/docs/environment.yaml b/docs/environment.yaml index d2852b8..92019ab 100644 --- a/docs/environment.yaml +++ b/docs/environment.yaml @@ -2,10 +2,11 @@ name: docs channels: - defaults dependencies: - - Sphinx==8.1.3 - - sphinx-autobuild==2024.10.3 - - sphinx-autodoc-typehints==2.5.0 + - Sphinx==9.1.0 + - sphinx-autobuild==2025.8.25 + - sphinx-autodoc-typehints==3.6.2 - sphinx-copybutton==0.5.2 - - sphinx-toolbox==3.8.1 - - sphinxext-opengraph==0.9.1 - - furo==2024.9.25 + - sphinx-toolbox==4.1.2 + - sphinxext-opengraph==0.13.0 + - furo==2025.12.19 + - matplotlib==3.10.8 diff --git a/docs/requirements.txt b/docs/requirements.txt index 6c12af7..007f853 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,15 +1,15 @@ -pytest==8.4.1 +pytest==9.0.2 -mysql-connector-python==9.4.0 -numpy==2.3.3 +mysql-connector-python==9.5.0 +numpy==2.4.1 python-slugify==8.0.4 pytz==2025.2 -Sphinx==8.2.3 -sphinx-autobuild==2024.10.3 -sphinx-autodoc-typehints==3.2.0 +Sphinx==9.1.0 +sphinx-autobuild==2025.8.25 +sphinx-autodoc-typehints==3.6.2 sphinx-copybutton==0.5.2 -sphinx-toolbox==4.0.0 -sphinxext-opengraph==0.12.0 -furo==2025.9.25 -matplotlib==3.10.5 +sphinx-toolbox==4.1.2 +sphinxext-opengraph==0.13.0 +furo==2025.12.19 +matplotlib==3.10.8 diff --git a/requirements-dev.txt b/requirements-dev.txt index a307bc6..05dbba3 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,11 +1,11 @@ -ruff==0.13.3 -pytest==8.4.1 -pytest-cov==6.2.1 +ruff==0.14.14 +pytest==9.0.2 +pytest-cov==7.0.0 wheel==0.46.3 build==1.3.0 twine==6.2.0 -mysql-connector-python==9.4.0 -numpy==2.3.3 +mysql-connector-python==9.5.0 +numpy==2.4.1 python-slugify==8.0.4 pytz==2025.2 diff --git a/requirements.txt b/requirements.txt index 12d45a9..c182c38 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -mysql-connector-python==9.4.0 -numpy==2.3.3 +mysql-connector-python==9.5.0 +numpy==2.4.1 python-slugify==8.0.4 pytz==2025.2 diff --git a/setup.py b/setup.py index b737769..be835f8 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/guest/test_guest_appearances.py b/tests/guest/test_guest_appearances.py index cf4b3a3..ebfa998 100644 --- a/tests/guest/test_guest_appearances.py +++ b/tests/guest/test_guest_appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/guest/test_guest_guest.py b/tests/guest/test_guest_guest.py index 1acce22..1239ae7 100644 --- a/tests/guest/test_guest_guest.py +++ b/tests/guest/test_guest_guest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/guest/test_guest_utility.py b/tests/guest/test_guest_utility.py index 5e6a544..be0a17e 100644 --- a/tests/guest/test_guest_utility.py +++ b/tests/guest/test_guest_utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/host/test_host_appearances.py b/tests/host/test_host_appearances.py index df1cf03..c70d989 100644 --- a/tests/host/test_host_appearances.py +++ b/tests/host/test_host_appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/host/test_host_host.py b/tests/host/test_host_host.py index fd1aabc..d1ea90b 100644 --- a/tests/host/test_host_host.py +++ b/tests/host/test_host_host.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/host/test_host_utility.py b/tests/host/test_host_utility.py index 0828683..f4f075d 100644 --- a/tests/host/test_host_utility.py +++ b/tests/host/test_host_utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/location/test_location_location.py b/tests/location/test_location_location.py index 2d58ce9..b4e24ba 100644 --- a/tests/location/test_location_location.py +++ b/tests/location/test_location_location.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/location/test_location_recordings.py b/tests/location/test_location_recordings.py index 59400ea..eb5b426 100644 --- a/tests/location/test_location_recordings.py +++ b/tests/location/test_location_recordings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/location/test_location_utility.py b/tests/location/test_location_utility.py index dc50137..d88d817 100644 --- a/tests/location/test_location_utility.py +++ b/tests/location/test_location_utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/panelist/test_panelist_appearances.py b/tests/panelist/test_panelist_appearances.py index e5a162d..2655e2a 100644 --- a/tests/panelist/test_panelist_appearances.py +++ b/tests/panelist/test_panelist_appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/panelist/test_panelist_decimal_scores.py b/tests/panelist/test_panelist_decimal_scores.py index 1034656..7a5c429 100644 --- a/tests/panelist/test_panelist_decimal_scores.py +++ b/tests/panelist/test_panelist_decimal_scores.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/panelist/test_panelist_panelist.py b/tests/panelist/test_panelist_panelist.py index e4e5cd8..b63655d 100644 --- a/tests/panelist/test_panelist_panelist.py +++ b/tests/panelist/test_panelist_panelist.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/panelist/test_panelist_scores.py b/tests/panelist/test_panelist_scores.py index 3d54045..78bbc08 100644 --- a/tests/panelist/test_panelist_scores.py +++ b/tests/panelist/test_panelist_scores.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/panelist/test_panelist_statistics.py b/tests/panelist/test_panelist_statistics.py index 911f250..423137a 100644 --- a/tests/panelist/test_panelist_statistics.py +++ b/tests/panelist/test_panelist_statistics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/panelist/test_panelist_utility.py b/tests/panelist/test_panelist_utility.py index 99af1d3..272e1aa 100644 --- a/tests/panelist/test_panelist_utility.py +++ b/tests/panelist/test_panelist_utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/pronoun/test_pronoun_pronouns.py b/tests/pronoun/test_pronoun_pronouns.py index f216ff5..2f9c49b 100644 --- a/tests/pronoun/test_pronoun_pronouns.py +++ b/tests/pronoun/test_pronoun_pronouns.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/scorekeeper/test_scorekeeper_appearances.py b/tests/scorekeeper/test_scorekeeper_appearances.py index 8756999..c13df59 100644 --- a/tests/scorekeeper/test_scorekeeper_appearances.py +++ b/tests/scorekeeper/test_scorekeeper_appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/scorekeeper/test_scorekeeper_scorekeeper.py b/tests/scorekeeper/test_scorekeeper_scorekeeper.py index b11bd4c..1238ff4 100644 --- a/tests/scorekeeper/test_scorekeeper_scorekeeper.py +++ b/tests/scorekeeper/test_scorekeeper_scorekeeper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/scorekeeper/test_scorekeeper_utility.py b/tests/scorekeeper/test_scorekeeper_utility.py index 859041f..e323d1d 100644 --- a/tests/scorekeeper/test_scorekeeper_utility.py +++ b/tests/scorekeeper/test_scorekeeper_utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/show/test_show_info.py b/tests/show/test_show_info.py index feadca2..bc84552 100644 --- a/tests/show/test_show_info.py +++ b/tests/show/test_show_info.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/show/test_show_info_multiple.py b/tests/show/test_show_info_multiple.py index 7ee8718..53077a6 100644 --- a/tests/show/test_show_info_multiple.py +++ b/tests/show/test_show_info_multiple.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/show/test_show_show.py b/tests/show/test_show_show.py index 7cab2da..a5142d9 100644 --- a/tests/show/test_show_show.py +++ b/tests/show/test_show_show.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/show/test_show_utility.py b/tests/show/test_show_utility.py index c3e1569..3e49028 100644 --- a/tests/show/test_show_utility.py +++ b/tests/show/test_show_utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/test_init.py b/tests/test_init.py index 4151891..2618146 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/tests/test_validation.py b/tests/test_validation.py index 9b00d2d..a20d599 100644 --- a/tests/test_validation.py +++ b/tests/test_validation.py @@ -1,6 +1,6 @@ # vim: set noai syntax=python ts=4 sw=4: # -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 """Testing for object: :py:class:`wwdtm.validation`.""" diff --git a/wwdtm/__init__.py b/wwdtm/__init__.py index 7ca7985..9b0571a 100644 --- a/wwdtm/__init__.py +++ b/wwdtm/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # @@ -26,7 +26,7 @@ from wwdtm.scorekeeper import Scorekeeper, ScorekeeperAppearances, ScorekeeperUtility from wwdtm.show import Show, ShowInfo, ShowInfoMultiple, ShowUtility -VERSION = "2.21.1" +VERSION = "2.22.0-pre" def database_version( diff --git a/wwdtm/guest/__init__.py b/wwdtm/guest/__init__.py index dba598e..3cb5177 100644 --- a/wwdtm/guest/__init__.py +++ b/wwdtm/guest/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/guest/appearances.py b/wwdtm/guest/appearances.py index 6aec3b8..34554bc 100644 --- a/wwdtm/guest/appearances.py +++ b/wwdtm/guest/appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/guest/guest.py b/wwdtm/guest/guest.py index 32d552c..ed5a832 100644 --- a/wwdtm/guest/guest.py +++ b/wwdtm/guest/guest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/guest/utility.py b/wwdtm/guest/utility.py index 3120dae..3488c1a 100644 --- a/wwdtm/guest/utility.py +++ b/wwdtm/guest/utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/host/__init__.py b/wwdtm/host/__init__.py index 6ca60ec..4bda7aa 100644 --- a/wwdtm/host/__init__.py +++ b/wwdtm/host/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/host/appearances.py b/wwdtm/host/appearances.py index bb3c6e7..7301c24 100644 --- a/wwdtm/host/appearances.py +++ b/wwdtm/host/appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/host/host.py b/wwdtm/host/host.py index 6362bbc..6298985 100644 --- a/wwdtm/host/host.py +++ b/wwdtm/host/host.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/host/utility.py b/wwdtm/host/utility.py index 0d6fc35..3043630 100644 --- a/wwdtm/host/utility.py +++ b/wwdtm/host/utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/location/__init__.py b/wwdtm/location/__init__.py index f3350cc..129ccee 100644 --- a/wwdtm/location/__init__.py +++ b/wwdtm/location/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/location/location.py b/wwdtm/location/location.py index 315f3f2..98ff3b8 100644 --- a/wwdtm/location/location.py +++ b/wwdtm/location/location.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/location/recordings.py b/wwdtm/location/recordings.py index fefa3b0..ff53210 100644 --- a/wwdtm/location/recordings.py +++ b/wwdtm/location/recordings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/location/utility.py b/wwdtm/location/utility.py index 34f8b57..60e4c96 100644 --- a/wwdtm/location/utility.py +++ b/wwdtm/location/utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/__init__.py b/wwdtm/panelist/__init__.py index 2dd6b61..b30ddd3 100644 --- a/wwdtm/panelist/__init__.py +++ b/wwdtm/panelist/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/appearances.py b/wwdtm/panelist/appearances.py index 7b9b6ae..6d41858 100644 --- a/wwdtm/panelist/appearances.py +++ b/wwdtm/panelist/appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/decimal_scores.py b/wwdtm/panelist/decimal_scores.py index 6662d8d..5f1a7a0 100644 --- a/wwdtm/panelist/decimal_scores.py +++ b/wwdtm/panelist/decimal_scores.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/panelist.py b/wwdtm/panelist/panelist.py index 4a3e794..3f06037 100644 --- a/wwdtm/panelist/panelist.py +++ b/wwdtm/panelist/panelist.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/scores.py b/wwdtm/panelist/scores.py index aaa376c..9b57a45 100644 --- a/wwdtm/panelist/scores.py +++ b/wwdtm/panelist/scores.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/statistics.py b/wwdtm/panelist/statistics.py index 9cb035b..d25378e 100644 --- a/wwdtm/panelist/statistics.py +++ b/wwdtm/panelist/statistics.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/panelist/utility.py b/wwdtm/panelist/utility.py index 1bd1801..609a08b 100644 --- a/wwdtm/panelist/utility.py +++ b/wwdtm/panelist/utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/pronoun/__init__.py b/wwdtm/pronoun/__init__.py index 5cb76c2..7012557 100644 --- a/wwdtm/pronoun/__init__.py +++ b/wwdtm/pronoun/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/pronoun/pronouns.py b/wwdtm/pronoun/pronouns.py index 26a9c1b..315a80b 100644 --- a/wwdtm/pronoun/pronouns.py +++ b/wwdtm/pronoun/pronouns.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/scorekeeper/__init__.py b/wwdtm/scorekeeper/__init__.py index 4d7075b..00f9274 100644 --- a/wwdtm/scorekeeper/__init__.py +++ b/wwdtm/scorekeeper/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/scorekeeper/appearances.py b/wwdtm/scorekeeper/appearances.py index 7707887..041acf2 100644 --- a/wwdtm/scorekeeper/appearances.py +++ b/wwdtm/scorekeeper/appearances.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/scorekeeper/scorekeeper.py b/wwdtm/scorekeeper/scorekeeper.py index 1b48666..f255f7a 100644 --- a/wwdtm/scorekeeper/scorekeeper.py +++ b/wwdtm/scorekeeper/scorekeeper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/scorekeeper/utility.py b/wwdtm/scorekeeper/utility.py index 12d998c..34650f7 100644 --- a/wwdtm/scorekeeper/utility.py +++ b/wwdtm/scorekeeper/utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/show/__init__.py b/wwdtm/show/__init__.py index b10e493..d6cabbc 100644 --- a/wwdtm/show/__init__.py +++ b/wwdtm/show/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/show/info.py b/wwdtm/show/info.py index 89fdb35..204699c 100644 --- a/wwdtm/show/info.py +++ b/wwdtm/show/info.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/show/info_multiple.py b/wwdtm/show/info_multiple.py index 8e17553..4a27069 100644 --- a/wwdtm/show/info_multiple.py +++ b/wwdtm/show/info_multiple.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/show/show.py b/wwdtm/show/show.py index e308778..78f3a4f 100644 --- a/wwdtm/show/show.py +++ b/wwdtm/show/show.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/show/utility.py b/wwdtm/show/utility.py index 3e0476f..914435d 100644 --- a/wwdtm/show/utility.py +++ b/wwdtm/show/utility.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # diff --git a/wwdtm/validation.py b/wwdtm/validation.py index 9630c16..7ceade2 100644 --- a/wwdtm/validation.py +++ b/wwdtm/validation.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018-2025 Linh Pham +# Copyright (c) 2018-2026 Linh Pham # wwdtm is released under the terms of the Apache License 2.0 # SPDX-License-Identifier: Apache-2.0 # From d327c78f48f65e9bb0e13d245b25fd49ec8f1a58 Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Mon, 26 Jan 2026 16:54:51 -0800 Subject: [PATCH 3/4] Update copyright year in docs/conf.py --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 72dd841..0544985 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ sys.path.insert(0, str(current_path.parent)) project = "wwdtm" -copyright = "2018–2025 Linh Pham. All Rights Reserved" +copyright = "2018–2026 Linh Pham. All Rights Reserved" author = "Linh Pham" extensions = [ From ef3f41a3574303fb441d3ca3270fde173966ebf1 Mon Sep 17 00:00:00 2001 From: Linh Pham Date: Mon, 26 Jan 2026 17:55:59 -0800 Subject: [PATCH 4/4] Remove prerelease from version string --- wwdtm/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwdtm/__init__.py b/wwdtm/__init__.py index 9b0571a..b1b45b9 100644 --- a/wwdtm/__init__.py +++ b/wwdtm/__init__.py @@ -26,7 +26,7 @@ from wwdtm.scorekeeper import Scorekeeper, ScorekeeperAppearances, ScorekeeperUtility from wwdtm.show import Show, ShowInfo, ShowInfoMultiple, ShowUtility -VERSION = "2.22.0-pre" +VERSION = "2.22.0" def database_version(