Skip to content

Commit

Permalink
Copyright update to 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jan 2, 2024
1 parent 0c26943 commit 13414d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <support@4dnucleome.org>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions test/test_license_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 == []


Expand Down

0 comments on commit 13414d9

Please sign in to comment.