Skip to content

Commit 9921088

Browse files
authored
fix urls
1 parent 35bd095 commit 9921088

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
CyDifflib
33
</h1>
44
<p align="center">
5-
<a href="https://github.com/maxbachmann/CyDifflib/actions">
6-
<img src="https://github.com/maxbachmann/CyDifflib/workflows/Build/badge.svg"
5+
<a href="https://github.com/rapidfuzz/CyDifflib/actions">
6+
<img src="https://github.com/rapidfuzz/CyDifflib/workflows/Build/badge.svg"
77
alt="Continous Integration">
88
</a>
99
<a href="https://pypi.org/project/cydifflib/">
@@ -14,8 +14,8 @@
1414
<img src="https://img.shields.io/pypi/pyversions/cydifflib"
1515
alt="Python versions">
1616
</a><br/>
17-
<a href="https://github.com/maxbachmann/CyDifflib/blob/main/LICENSE">
18-
<img src="https://img.shields.io/github/license/maxbachmann/CyDifflib"
17+
<a href="https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE">
18+
<img src="https://img.shields.io/github/license/rapidfuzz/CyDifflib"
1919
alt="GitHub license">
2020
</a>
2121
</p>
@@ -24,10 +24,10 @@
2424

2525

2626
## 🚀 Benchmarks
27-
The following [benchmark](https://github.com/maxbachmann/CyDifflib/tree/main/bench) compares the performance in the original [difflib](https://docs.python.org/3.10/library/difflib.html) implementation, the library [cdifflib](https://github.com/mduggan/cdifflib) and CyDifflib
27+
The following [benchmark](https://github.com/rapidfuzz/CyDifflib/tree/main/bench) compares the performance in the original [difflib](https://docs.python.org/3.10/library/difflib.html) implementation, the library [cdifflib](https://github.com/mduggan/cdifflib) and CyDifflib
2828

2929
<p align="center">
30-
<img src="https://raw.githubusercontent.com/maxbachmann/CyDifflib/main/bench/CyDifflib.svg?sanitize=true" alt="Benchmark CyDifflib">
30+
<img src="https://raw.githubusercontent.com/rapidfuzz/CyDifflib/main/bench/CyDifflib.svg?sanitize=true" alt="Benchmark CyDifflib">
3131
</p>
3232

3333
## ⚙️ Installation
@@ -42,7 +42,7 @@ CyDifflib provides binary wheels for all common platforms.
4242

4343
For a source build (for example from a SDist packaged) you only require a C++11 compatible compiler. You can install directly from GitHub if you would like.
4444
```
45-
pip install git+https://github.com/maxbachmann/CyDifflib.git@main
45+
pip install git+https://github.com/rapidfuzz/CyDifflib.git@main
4646
```
4747

4848
## 📖 Usage
@@ -64,11 +64,11 @@ from thefuzz import fuzz
6464
## 👍 Contributing
6565

6666
PRs are welcome!
67-
- Found a bug? Report it in form of an [issue](https://github.com/maxbachmann/CyDifflib/issues). Any difference in behavior to difflib is considered as a bug.
67+
- Found a bug? Report it in form of an [issue](https://github.com/rapidfuzz/CyDifflib/issues). Any difference in behavior to difflib is considered as a bug.
6868
- Can make something faster? Great! Just avoid external dependencies and remember that external behavior does not change.
6969
- Have no time to code? Tell your friends and subscribers about CyDifflib.
7070

7171
Thank you :heart:
7272

7373
## ⚠️ License
74-
Copyright 2021-present [Max Bachmann](https://github.com/maxbachmann). `CyDifflib` is free and open-source software licensed under the [MIT License](https://github.com/maxbachmann/CyDifflib/blob/main/LICENSE).
74+
Copyright 2021-present [Max Bachmann](https://github.com/maxbachmann). `CyDifflib` is free and open-source software licensed under the [MIT License](https://github.com/rapidfuzz/CyDifflib/blob/main/LICENSE).

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setup(
77
name="cydifflib",
88
version="1.0.1",
9-
url="https://github.com/maxbachmann/cydifflib",
9+
url="https://github.com/rapidfuzz/cydifflib",
1010
author="Max Bachmann",
1111
author_email="[email protected]",
1212
description="Fast implementation of difflib's algorithms",

0 commit comments

Comments
 (0)