From e42b1cde1b0bc19a1f2e4b49338313c59f801b5e Mon Sep 17 00:00:00 2001 From: tmtabor Date: Tue, 5 Sep 2023 09:53:14 -0700 Subject: [PATCH] Updating copyright and version number --- LICENSE.txt | 2 +- gp/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 7bdf06a..f769734 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2015-2020, Regents of the University of California & Broad Institute +Copyright (c) 2015-2023, Regents of the University of California & Broad Institute All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/gp/__init__.py b/gp/__init__.py index 30580e6..23aa3bc 100644 --- a/gp/__init__.py +++ b/gp/__init__.py @@ -7,8 +7,8 @@ """ __authors__ = ['Thorin Tabor', 'Chet Birger'] -__copyright__ = 'Copyright 2014-2022, Regents of the University of California & Broad Institute' -__version__ = '22.10' +__copyright__ = 'Copyright 2014-2023, Regents of the University of California & Broad Institute' +__version__ = '23.09' __status__ = 'Production' # Import core functionality diff --git a/setup.py b/setup.py index d2d99d7..8ef5b95 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # Read version and other metadata from file -__version__ = '22.10' +__version__ = '23.09' with open('README.md') as f: long_description = f.read()