Skip to content

Commit 7d6ba18

Browse files
authored
📚 DOCS: Updating links for new repo URL
2 parents edba090 + 9539fa0 commit 7d6ba18

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ We welcome all contributions! See the [EBP Contributing Guide](https://executabl
4040

4141
[rtd-badge]: https://readthedocs.org/projects/sphinxcontrib-prettyproof/badge/?version=latest
4242
[rtd-link]: https://sphinxcontrib-prettyproof.readthedocs.io/en/latest/?badge=latest
43-
[github-ci]: https://github.com/najuzilu/sphinxcontrib-prettyproof/workflows/continuous-integration/badge.svg?branch=master
44-
[github-link]: https://github.com/najuzilu/sphinxcontrib-prettyproof
45-
[codecov-badge]: https://codecov.io/gh/najuzilu/sphinxcontrib-prettyproof/branch/master/graph/badge.svg
46-
[codecov-link]: https://codecov.io/gh/najuzilu/sphinxcontrib-prettyproof
43+
[github-ci]: https://github.com/executablebooks/sphinxcontrib-prettyproof/workflows/continuous-integration/badge.svg?branch=master
44+
[github-link]: https://github.com/executablebooks/sphinxcontrib-prettyproof
45+
[codecov-badge]: https://codecov.io/gh/executablebooks/sphinxcontrib-prettyproof/branch/master/graph/badge.svg
46+
[codecov-link]: https://codecov.io/gh/executablebooks/sphinxcontrib-prettyproof

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
html_theme_options = {
3939
"path_to_docs": "docs",
40-
"repository_url": "https://github.com/najuzilu/sphinxcontrib-prettyproof",
40+
"repository_url": "https://github.com/executablebooks/sphinxcontrib-prettyproof",
4141
"use_edit_page_button": True,
4242
"use_issues_button": True,
4343
"use_repository_button": True,

docs/source/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ you may then build using `make html` and the extension will be used by your `Sph
6767

6868
[rtd-badge]: https://readthedocs.org/projects/sphinxcontrib-prettyproof/badge/?version=latest
6969
[rtd-link]: https://sphinxcontrib-prettyproof.readthedocs.io/en/latest/?badge=latest
70-
[github-ci]: https://github.com/najuzilu/sphinxcontrib-prettyproof/workflows/continuous-integration/badge.svg?branch=master
71-
[github-link]: https://github.com/najuzilu/sphinxcontrib-prettyproof
72-
[codecov-badge]: https://codecov.io/gh/najuzilu/sphinxcontrib-prettyproof/branch/master/graph/badge.svg
73-
[codecov-link]: https://codecov.io/gh/najuzilu/sphinxcontrib-prettyproof
70+
[github-ci]: https://github.com/executablebooks/sphinxcontrib-prettyproof/workflows/continuous-integration/badge.svg?branch=master
71+
[github-link]: https://github.com/executablebooks/sphinxcontrib-prettyproof
72+
[codecov-badge]: https://codecov.io/gh/executablebooks/sphinxcontrib-prettyproof/branch/master/graph/badge.svg
73+
[codecov-link]: https://codecov.io/gh/executablebooks/sphinxcontrib-prettyproof

docs/source/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You can also install directly from the repository to get the latest `development
1010
You can clone the repository:
1111

1212
```bash
13-
git clone https://github.com/najuzilu/sphinxcontrib-prettyproof
13+
git clone https://github.com/executablebooks/sphinxcontrib-prettyproof
1414
```
1515

1616
then run:
@@ -24,7 +24,7 @@ python setup.py install
2424
To install `sphinxcontrib-prettyproof` for package development:
2525

2626
```bash
27-
git clone https://github.com/najuzilu/sphinxcontrib-prettyproof
27+
git clone https://github.com/executablebooks/sphinxcontrib-prettyproof
2828
cd sphinxcontrib-prettyproof
2929
git checkout master
3030
pip install -e .[all]

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
SHORT_DESCRIPTION = "A Sphinx extension for producing proofs, theorems, axioms, etc."
1717

18-
URL = f"https://github.com/najuzilu/sphinxcontrib-prettyproof/archive/{VERSION}.tar.gz"
18+
BASE_URL = "https://github.com/executablebooks/sphinxcontrib-prettyproof"
19+
URL = f"{BASE_URL}/archive/{VERSION}.tar.gz"
1920

2021
# Define all extras
2122
extras = {
@@ -44,11 +45,11 @@
4445
python_requires=">=3.6",
4546
author="QuantEcon",
4647
author_email="admin@quantecon.org",
47-
url="https://github.com/najuzilu/sphinxcontrib-prettyproof",
48+
url=BASE_URL,
4849
download_url=URL,
4950
project_urls={
50-
"Source": "https://github.com/najuzilu/sphinxcontrib-prettyproof",
51-
"Tracker": "https://github.com/najuzilu/sphinxcontrib-prettyproof/issues",
51+
"Source": BASE_URL,
52+
"Tracker": f"{BASE_URL}/issues",
5253
},
5354
description=SHORT_DESCRIPTION,
5455
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)