From 46a43adbcc464c65d4f8daf0c39ab55cfd3a864c Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Tue, 6 Sep 2022 21:53:15 -0400 Subject: [PATCH] fix: fix github url strings (org edx -> openedx) --- CONTRIBUTING.rst | 2 +- README.rst | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index e9bc0bd..8639fdf 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -103,7 +103,7 @@ Before you submit a pull request, check that it meets these guidelines: your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 3.8 and for PyPy. Check - https://github.com/edx/user-util/actions?query=workflow%3A%22Python+CI%22 + https://github.com/openedx/user-util/actions?query=workflow%3A%22Python+CI%22 and make sure that the tests pass for all supported Python versions. Tips diff --git a/README.rst b/README.rst index 74566cf..3de4613 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ Open edX User Utilities .. image:: https://img.shields.io/pypi/v/user-util.svg :target: https://pypi.python.org/pypi/user-util -.. image:: https://github.com/edx/user-util/workflows/Python%20CI/badge.svg?branch=master - :target: https://github.com/edx/user-util/actions?query=workflow%3A%22Python+CI%22 +.. image:: https://github.com/openedx/user-util/workflows/Python%20CI/badge.svg?branch=master + :target: https://github.com/openedx/user-util/actions?query=workflow%3A%22Python+CI%22 .. image:: https://readthedocs.org/projects/user-util/badge/?version=latest :target: https://user-util.readthedocs.io/en/latest/?badge=latest diff --git a/setup.py b/setup.py index b90bcf0..4ff349b 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def get_version(*file_paths): setup_requires=setup_requirements, test_suite='tests', tests_require=test_requirements, - url='https://github.com/edx/user-util', + url='https://github.com/openedx/user-util', version=VERSION, zip_safe=False, )