Skip to content

Commit f306541

Browse files
authored
Fix links by replacing with https://ivy-llc.github.io (#28934)
1 parent e9735e6 commit f306541

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Please, follow the next process when you work on your subtask:
1515

1616
Currently, there are three open tasks:
1717
- [Transpiler](https://github.com/ivy-llc/ivy/issues?q=is%3Aopen+is%3Aissue+label%3ATranspiler)
18-
- [Frontend APIs](https://docs.ivy.dev/overview/contributing/open_tasks.html#frontend-apis)
19-
- [Ivy Experimental API](https://docs.ivy.dev/overview/contributing/open_tasks.html#ivy-experimental-api)
18+
- [Frontend APIs](https://ivy-llc.github.io/docs/overview/contributing/open_tasks.html#frontend-apis)
19+
- [Ivy Experimental API](https://ivy-llc.github.io/docs/overview/contributing/open_tasks.html#ivy-experimental-api)
2020

2121
2. **Create Issue:**
2222

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div style="display: block;" align="center">
2-
<a href="https://ivy.dev/">
2+
<a href="https://ivy-llc.github.io//">
33
<img class="dark-light" width="50%" src="https://raw.githubusercontent.com/ivy-llc/assets/refs/heads/main/assets/logos/ivy-long.svg"/>
44
</a>
55
</div>
@@ -94,7 +94,7 @@ These are the frameworks that `ivy.transpile` currently supports conversions fro
9494

9595
# Using ivy
9696

97-
Here's some examples, to help you get started using Ivy! The [examples page](https://www.docs.ivy.dev/demos/examples_and_demos.html) also features a wide range of
97+
Here's some examples, to help you get started using Ivy! The [examples page](https://ivy-llc.github.io/docs/demos/examples_and_demos.html) also features a wide range of
9898
demos and tutorials showcasing some more use cases for Ivy.
9999

100100
<details>
@@ -204,8 +204,8 @@ We believe that everyone can contribute and make a difference. Whether
204204
it\'s writing code, fixing bugs, or simply sharing feedback,
205205
your contributions are definitely welcome and appreciated"
206206

207-
Check out all of our [Open Tasks](https://docs.ivy.dev/overview/contributing/open_tasks.html),
208-
and find out more info in our [Contributing Guide](https://docs.ivy.dev/overview/contributing.html)
207+
Check out all of our [Open Tasks](https://ivy-llc.github.io/docs/overview/contributing/open_tasks.html),
208+
and find out more info in our [Contributing Guide](https://ivy-llc.github.io/docs/overview/contributing.html)
209209
in the docs.
210210

211211
<br clear="all" />

docs/overview/api_key.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Setting up your API key
22
=======================
33

4-
You can generate a personal api key for Ivy by signing up for free at https://ivy.dev/signin.
5-
This will grant you additional transpilations that can be used for completely free on any code! Find out more at https://ivy.dev/.
4+
You can generate a personal api key for Ivy by signing up for free at https://ivy-llc.github.io/signin.
5+
This will grant you additional transpilations that can be used for completely free on any code! Find out more at https://ivy-llc.github.io/.
66

77
Using your API key
88
------------------

docs/overview/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The contributor guide is split into the sections below, it's best to go from sta
4141
contributing/setting_up.rst
4242
contributing/the_basics.rst
4343
contributing/building_the_docs.rst
44-
Deep Dive <https://docs.ivy.dev/overview/deep_dive.html>
44+
Deep Dive <https://ivy-llc.github.io/docs/overview/deep_dive.html>
4545
contributing/helpful_resources.rst
4646
contributing/error_handling.rst
4747

docs/overview/deep_dive/ivy_frontends.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Ivy Frontends
2323
Introduction
2424
------------
2525

26-
On top of the Ivy functional API and backend functional APIs, Ivy has another set of framework-specific frontend functional APIs, which play an important role in code transpilations, as explained `here <https://docs.ivy.dev/overview/design/ivy_as_a_transpiler.html>`_.
26+
On top of the Ivy functional API and backend functional APIs, Ivy has another set of framework-specific frontend functional APIs, which play an important role in code transpilations, as explained `here <https://ivy-llc.github.io/docs/overview/design/ivy_as_a_transpiler.html>`_.
2727

2828

2929

ivy/transpiler/exceptions/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def format_missing_frontends_msg(frequency):
4545
msg = (
4646
"\n\n(MissingFrontendsWarning): Some functions are not yet implemented in the Ivy frontend API."
4747
+ " Visit Ivy's open task page to learn more about contributing: "
48-
+ "https://www.docs.ivy.dev/overview/contributing/open_tasks.html \n\n"
48+
+ "https://www.ivy-llc.github.io/docs/overview/contributing/open_tasks.html \n\n"
4949
+ "The missing functions are listed below as <(number of calls) function_path>:\n-> {}\n\n"
5050
+ "Proceeding with transpilation, but be aware that the computation may fail if it reaches a point "
5151
+ "where these missing frontends are required.\n"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ def _strip(line):
5252
name="ivy",
5353
version=__version__,
5454
author="Ivy",
55-
author_email="contact@ivy.dev",
55+
# author_email="contact@ivy.dev",
5656
description="Convert Machine Learning Code Between Frameworks",
5757
long_description=long_description,
5858
long_description_content_type="text/markdown",
59-
url="https://ivy.dev",
59+
url="https://ivy-llc.github.io",
6060
project_urls={
61-
"Docs": "https://docs.ivy.dev/",
61+
"Docs": "https://ivy-llc.github.io/docs/",
6262
"Source": "https://github.com/ivy-llc/ivy",
6363
},
6464
include_package_data=True,

0 commit comments

Comments
 (0)