From b586d2d3cb628cec3856fbac3bdd3b06af59c859 Mon Sep 17 00:00:00 2001 From: glitch Date: Tue, 5 Oct 2021 15:38:34 -0400 Subject: [PATCH] Closes #946 - remove versionfile_build from setup.cfg Closes #947 - update repo urls to Bears-R-Us in setup.py --- setup.cfg | 1 - setup.py | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index a7eaa34de6..20b02dae13 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,6 +2,5 @@ VCS = git style = pep440 versionfile_source = arkouda/_version.py -versionfile_build = dist/arkouda/_version.py tag_prefix = parentdir_prefix = arkouda- \ No newline at end of file diff --git a/setup.py b/setup.py index 547cf4a7fc..a2e908a7b3 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ # # This field corresponds to the "Home-Page" metadata field: # https://packaging.python.org/specifications/core-metadata/#home-page-optional - url='https://github.com/mhmerrill/arkouda', # Optional + url='https://github.com/Bears-R-Us/arkouda', # Optional # This should be your name or the name of the organization which owns the # project. @@ -198,8 +198,8 @@ # maintainers, and where to support the project financially. The key is # what's used to render the link text on PyPI. project_urls={ # Optional - 'Bug Reports': 'https://github.com/mhmerrill/arkouda/issues', - 'Source': 'https://github.com/mhmerrill/arkouda', + 'Bug Reports': 'https://github.com/Bears-R-Us/arkouda/issues', + 'Source': 'https://github.com/Bears-R-Us/arkouda', 'Chapel': 'https://chapel-lang.org' }, )