From add970c0ae4979f117d5b56a9039b312d42a3476 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 14 Jan 2022 15:33:43 -0500 Subject: [PATCH] Update var.py --- src/gam/var.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gam/var.py b/src/gam/var.py index 75f5ab16..b83c06cf 100644 --- a/src/gam/var.py +++ b/src/gam/var.py @@ -17,11 +17,11 @@ GAM_INFO = ( f'Python {platform.python_version()} {sys.version_info.releaselevel} / ' f'{platform.platform()} {platform.machine()}') -GAM_RELEASES = 'https://github.com/jay0lee/GAM/releases' -GAM_WIKI = 'https://github.com/jay0lee/GAM/wiki' -GAM_ALL_RELEASES = 'https://api.github.com/repos/jay0lee/GAM/releases' +GAM_RELEASES = 'https://github.com/GAM-team/GAM/releases' +GAM_WIKI = 'https://github.com/GAM-team/GAM/wiki' +GAM_ALL_RELEASES = 'https://api.github.com/repos/GAM-team/GAM/releases' GAM_LATEST_RELEASE = GAM_ALL_RELEASES + '/latest' -GAM_PROJECT_FILEPATH = 'https://raw.githubusercontent.com/jay0lee/GAM/master/src/' +GAM_PROJECT_FILEPATH = 'https://raw.githubusercontent.com/GAM-team/GAM/master/src/' true_values = ['on', 'yes', 'enabled', 'true', '1'] false_values = ['off', 'no', 'disabled', 'false', '0']