Skip to content

Commit 6e6bdf2

Browse files
Updated repository link
1 parent 25ece87 commit 6e6bdf2

File tree

5 files changed

+29
-29
lines changed

5 files changed

+29
-29
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<p align="center">
2323
A python threading library extension
2424
<br />
25-
<a href="https://github.com/caffeine-addictt/thread/issues">Report Bug</a>
25+
<a href="https://github.com/python-thread/thread/issues">Report Bug</a>
2626
·
27-
<a href="https://github.com/caffeine-addictt/thread/issues">Request Feature</a>
27+
<a href="https://github.com/python-thread/thread/issues">Request Feature</a>
2828
</p>
2929
</div>
3030

@@ -97,7 +97,7 @@ Our docs are [here!](/docs/getting-started.md)
9797
- [ ] Testing
9898
- [ ] Next release...
9999

100-
See the [open issues](https://github.com/caffeine-addictt/thread/issues) for a full list of proposed features (and known issues).
100+
See the [open issues](https://github.com/python-thread/thread/issues) for a full list of proposed features (and known issues).
101101

102102
<p align="right">(<a href="#readme-top">back to top</a>)</p>
103103

@@ -133,11 +133,11 @@ Distributed under the BSD-3-Clause License. See `LICENSE.txt` for more informati
133133
<!-- CONTACT -->
134134
## Contact
135135

136-
136+
137137

138-
Project Board: https://github.com/users/caffeine-addictt/projects/5
138+
Project Board: https://github.com/orgs/python-thread/projects/2
139139

140-
Project Link: [https://github.com/caffeine-addictt/thread](https://github.com/caffeine-addictt/thread)
140+
Project Link: [https://github.com/python-thread/thread](https://github.com/python-thread/thread)
141141

142142
<p align="right">(<a href="#readme-top">back to top</a>)</p>
143143

@@ -158,15 +158,15 @@ Project Link: [https://github.com/caffeine-addictt/thread](https://github.com/ca
158158

159159
<!-- MARKDOWN LINKS & IMAGES -->
160160
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
161-
[contributors-shield]: https://img.shields.io/github/contributors/caffeine-addictt/thread.svg?style=for-the-badge
162-
[contributors-url]: https://github.com/caffeine-addictt/thread/graphs/contributors
163-
[forks-shield]: https://img.shields.io/github/forks/caffeine-addictt/thread.svg?style=for-the-badge
164-
[forks-url]: https://github.com/caffeine-addictt/thread/network/members
165-
[stars-shield]: https://img.shields.io/github/stars/caffeine-addictt/thread.svg?style=for-the-badge
166-
[stars-url]: https://github.com/caffeine-addictt/thread/stargazers
167-
[issues-shield]: https://img.shields.io/github/issues/caffeine-addictt/thread.svg?style=for-the-badge
168-
[issues-url]: https://github.com/caffeine-addictt/thread/issues
169-
[license-shield]: https://img.shields.io/github/license/caffeine-addictt/thread.svg?style=for-the-badge
170-
[license-url]: https://github.com/caffeine-addictt/thread/blob/master/LICENSE.txt
161+
[contributors-shield]: https://img.shields.io/github/contributors/python-thread/thread.svg?style=for-the-badge
162+
[contributors-url]: https://github.com/python-thread/thread/graphs/contributors
163+
[forks-shield]: https://img.shields.io/github/forks/python-thread/thread.svg?style=for-the-badge
164+
[forks-url]: https://github.com/python-thread/thread/network/members
165+
[stars-shield]: https://img.shields.io/github/stars/python-thread/thread.svg?style=for-the-badge
166+
[stars-url]: https://github.com/python-thread/thread/stargazers
167+
[issues-shield]: https://img.shields.io/github/issues/python-thread/thread.svg?style=for-the-badge
168+
[issues-url]: https://github.com/python-thread/thread/issues
169+
[license-shield]: https://img.shields.io/github/license/python-thread/thread.svg?style=for-the-badge
170+
[license-url]: https://github.com/python-thread/thread/blob/master/LICENSE.txt
171171
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
172172
[linkedin-url]: https://www.linkedin.com/in/ngjx

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pip install thread
2424
### Building from source (Not Recommended)
2525
```sh
2626
# Clone this repository
27-
git clone https://github.com/caffeine-addictt/thread
27+
git clone https://github.com/python-thread/thread
2828

2929
# Install dependencies
3030
pip install poetry

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ license = "BSD-3-Clause"
77
readme = "README.md"
88
packages = [{include = "thread", from = "src"}]
99
include = [{ path = "tests", format = "sdist" }]
10-
homepage = "https://github.com/caffeine-addictt/thread"
11-
repository = "https://github.com/caffeine-addictt/thread"
12-
documentation = "https://github.com/caffeine-addictt/thread/blob/main/docs/getting-started.md"
10+
homepage = "https://github.com/python-thread/thread"
11+
repository = "https://github.com/python-thread/thread"
12+
documentation = "https://github.com/python-thread/thread/blob/main/docs/getting-started.md"
1313
keywords = ["threading", "extension", "multiprocessing"]
1414
classifiers = [
1515
"Development Status :: 3 - Alpha",
@@ -18,7 +18,7 @@ classifiers = [
1818
]
1919

2020
[tool.poetry.urls]
21-
"Bug Tracker" = "https://github.com/caffeine-addictt/thread/issues"
21+
"Bug Tracker" = "https://github.com/python-thread/thread/issues"
2222

2323
[tool.poetry.scripts]
2424
thread = "thread.__main__:app"

src/thread/cli/base.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def callback(
4040
4141
[blue][u] [/u][/blue]
4242
43-
Learn more from our [link=https://github.com/caffeine-addictt/thread/blob/main/docs/command-line.md]documentation![/link]
43+
Learn more from our [link=https://github.com/python-thread/thread/blob/main/docs/command-line.md]documentation![/link]
4444
"""
4545
verbose_args_processor(debug, verbose, quiet)
4646

@@ -56,15 +56,15 @@ def help():
5656

5757
import webbrowser
5858
webbrowser.open(
59-
'https://github.com/caffeine-addictt/thread/issues',
59+
'https://github.com/python-thread/thread/issues',
6060
new = 2
6161
)
6262
typer.echo('Opening in web browser!')
6363

6464
except Exception as e:
6565
logger.warn('Failed to open web browser')
6666
logger.debug(f'{e}')
67-
typer.echo('https://github.com/caffeine-addictt/thread/issues')
67+
typer.echo('https://github.com/python-thread/thread/issues')
6868

6969

7070

@@ -76,15 +76,15 @@ def docs():
7676
logger.info('Attempting to open in web browser...')
7777
import webbrowser
7878
webbrowser.open(
79-
'https://github.com/caffeine-addictt/thread/blob/main/docs/command-line.md',
79+
'https://github.com/python-thread/thread/blob/main/docs/command-line.md',
8080
new = 2
8181
)
8282
typer.echo('Opening in web browser!')
8383

8484
except Exception as e:
8585
logger.warn('Failed to open web browser')
8686
logger.debug(f'{e}')
87-
typer.echo('https://github.com/caffeine-addictt/thread/blob/main/docs/command-line.md')
87+
typer.echo('https://github.com/python-thread/thread/blob/main/docs/command-line.md')
8888

8989

9090

@@ -96,15 +96,15 @@ def report():
9696
logger.info('Attempting to open in web browser...')
9797
import webbrowser
9898
webbrowser.open(
99-
'https://github.com/caffeine-addictt/thread/issues',
99+
'https://github.com/python-thread/thread/issues',
100100
new = 2
101101
)
102102
typer.echo('Opening in web browser!')
103103

104104
except Exception as e:
105105
logger.warn('Failed to open web browser')
106106
logger.debug(f'{e}')
107-
typer.echo('https://github.com/caffeine-addictt/thread/issues')
107+
typer.echo('https://github.com/python-thread/thread/issues')
108108

109109

110110

src/thread/cli/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def process(
5050
5151
[blue][u] [/u][/blue]
5252
53-
Learn more from our [link=https://github.com/caffeine-addictt/thread/blob/main/docs/command-line.md#parallel-processing-thread-process]documentation![/link]
53+
Learn more from our [link=https://github.com/python-thread/thread/blob/main/docs/command-line.md#parallel-processing-thread-process]documentation![/link]
5454
"""
5555
verbose_args_processor(debug, verbose, quiet)
5656
kwargs = kwargs_processor(kargs)

0 commit comments

Comments
 (0)