Skip to content

Commit db33f28

Browse files
committed
Transfer ownership update
1 parent f304abb commit db33f28

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ jobs:
6464
with:
6565
python-version: "3.8"
6666
- name: Install clang-tools of push event
67-
run: pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@${{ github.ref }}
67+
run: pip install git+https://github.com/cpp-linter/clang-tools-pip.git@${{ github.ref }}
6868
- name: Install clang-tools of pull_request event
6969
if: github.event_name == 'pull_request'
70-
run: pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@${{ github.head_ref }}
70+
run: pip install git+https://github.com/cpp-linter/clang-tools-pip.git@${{ github.head_ref }}
7171
- name: Installation testing
7272
run: |
7373
clang-tools --install ${{ matrix.version }}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ When you're finished with the changes, create a pull request, also known as a PR
1717
Install `clang-tools` from source code
1818

1919
```bash
20-
$ git clone git@github.com:shenxianpeng/clang-tools-pip.git
20+
$ git clone git@github.com:cpp-linter/clang-tools-pip.git
2121
# Need root permission
2222
$ sudo python3 setup.py install
2323
# Install clang-tools version 13

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# clang-tools
22

3-
[![PyPI](https://img.shields.io/pypi/v/clang-tools)](https://pypi.org/project/clang-tools/) [![Python test](https://github.com/shenxianpeng/clang-tools-pip/actions/workflows/python-test.yml/badge.svg)](https://github.com/shenxianpeng/clang-tools-pip/actions/workflows/python-test.yml) [![codecov](https://codecov.io/gh/shenxianpeng/clang-tools-pip/branch/master/graph/badge.svg?token=40G5ZOIRRR)](https://codecov.io/gh/shenxianpeng/clang-tools-pip) [![Platfrom](https://img.shields.io/badge/platform-linux--64%20%7C%20win--64%20%7C%20osx--64%20-blue)](https://pypi.org/project/clang-tools/) ![PyPI - Downloads](https://img.shields.io/pypi/dw/clang-tools)
3+
[![PyPI](https://img.shields.io/pypi/v/clang-tools)](https://pypi.org/project/clang-tools/) [![Python test](https://github.com/cpp-linter/clang-tools-pip/actions/workflows/python-test.yml/badge.svg)](https://github.com/cpp-linter/clang-tools-pip/actions/workflows/python-test.yml) [![codecov](https://codecov.io/gh/cpp-linter/clang-tools-pip/branch/master/graph/badge.svg?token=40G5ZOIRRR)](https://codecov.io/gh/cpp-linter/clang-tools-pip) [![Platfrom](https://img.shields.io/badge/platform-linux--64%20%7C%20win--64%20%7C%20osx--64%20-blue)](https://pypi.org/project/clang-tools/) ![PyPI - Downloads](https://img.shields.io/pypi/dw/clang-tools)
44

55

66
Install clang-tools binaries (clang-format, clang-tidy) with pip.
@@ -14,7 +14,7 @@ Install `clang-tools` command with pip
1414
$ pip install clang-tools
1515

1616
# install `clang-tools` from git repo
17-
pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
17+
pip install git+https://github.com/cpp-linter/clang-tools-pip.git@main
1818
```
1919

2020
## Usage

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
license="MIT License",
1717
packages=find_packages(),
1818
project_urls={
19-
"Source": "https://github.com/shenxianpeng/clang-tools-pip",
20-
"Tracker": "https://github.com/shenxianpeng/clang-tools-pip/issues"
19+
"Source": "https://github.com/cpp-linter/clang-tools-pip",
20+
"Tracker": "https://github.com/cpp-linter/clang-tools-pip/issues"
2121
},
2222
classifiers=[
2323
# https://pypi.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)