From 13414d9ab1c5bc25da0dcd46454dff48b81bf291 Mon Sep 17 00:00:00 2001 From: David Michaels Date: Tue, 2 Jan 2024 09:05:17 -0500 Subject: [PATCH] Copyright update to 2024 --- LICENSE.txt | 2 +- pyproject.toml | 2 +- test/test_license_utils.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index dbd9eb7db..e7d2f54ef 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License -Copyright 2017-2023 President and Fellows of Harvard College +Copyright 2017-2024 President and Fellows of Harvard College Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyproject.toml b/pyproject.toml index c63c2cfc9..a0214ed72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dcicutils" -version = "8.5.0.1b12" # TODO: To become 8.6.0 +version = "8.5.0.1b13" # TODO: To become 8.6.0 description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources" authors = ["4DN-DCIC Team "] license = "MIT" diff --git a/test/test_license_utils.py b/test/test_license_utils.py index e0d0fdc25..80fa64a62 100644 --- a/test/test_license_utils.py +++ b/test/test_license_utils.py @@ -759,13 +759,13 @@ def mocked_license_logger(message): # Test that with no analysis argument, problems get sent out as warnings LicenseFileParser.validate_simple_license_file(filename='LICENSE.txt') - assert license_warnings == ["The copyright year, '2020', should have '2023' at the end."] + assert license_warnings == ["The copyright year, '2020', should have '2024' at the end."] # Test that with an analysis argument, problems get summarized to that object analysis = LicenseAnalysis() license_warnings = [] LicenseFileParser.validate_simple_license_file(filename='LICENSE.txt', analysis=analysis) - assert analysis.miscellaneous == ["The copyright year, '2020', should have '2023' at the end."] + assert analysis.miscellaneous == ["The copyright year, '2020', should have '2024' at the end."] assert license_warnings == []