Skip to content

Commit

Permalink
Fix links to point to correct subdomain (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevb committed Feb 10, 2023
1 parent 6c9954c commit c488ba0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/broken-link-checker.yml
Expand Up @@ -15,4 +15,4 @@ jobs:
- name: setup broken link checker
run: npm install -g broken-link-checker
- name: Check getdaft.io
run: blc https://getdaft.io -ro --exclude www.pytorch.org/ --exclude https://github.com/Eventual-Inc/Daft/
run: blc https://www.getdaft.io -ro --exclude www.pytorch.org/ --exclude https://github.com/Eventual-Inc/Daft/
14 changes: 7 additions & 7 deletions README.rst
Expand Up @@ -2,7 +2,7 @@

|CI| |PyPI| |Latest Tag|

`Website <https://www.getdaft.io>`_ • `Docs <https://www.getdaft.io/docs>`_ • `Installation`_ • `10-minute tour of Daft <https://getdaft.io/project/docs/en/latest/learn/10-min.html>`_ • `Community and Support <https://github.com/Eventual-Inc/Daft/discussions>`_
`Website <https://www.getdaft.io>`_ • `Docs <https://www.getdaft.io/projects/docs/>`_ • `Installation`_ • `10-minute tour of Daft <https://www.getdaft.io/projects/docs/en/latest/learn/10-min.html>`_ • `Community and Support <https://github.com/Eventual-Inc/Daft/discussions>`_

Daft: the distributed Python dataframe for complex data
=======================================================
Expand Down Expand Up @@ -36,12 +36,12 @@ Installation

Install Daft with ``pip install getdaft``.

For more advanced installations (e.g. installing from source or with extra dependencies such as Ray and AWS utilities), please see our `Installation Guide <https://getdaft.io/project/docs/en/latest/install.html>`_
For more advanced installations (e.g. installing from source or with extra dependencies such as Ray and AWS utilities), please see our `Installation Guide <https://www.getdaft.io/projects/docs/en/latest/install.html>`_

Quickstart
^^^^^^^^^^

Check out our `10-minute quickstart <https://getdaft.io/project/docs/en/latest/learn/10-min.html>`_!
Check out our `10-minute quickstart <https://www.getdaft.io/projects/docs/en/latest/learn/10-min.html>`_!

In this example, we load images from an AWS S3 bucket and run a simple function to generate thumbnails for each image:

Expand Down Expand Up @@ -78,9 +78,9 @@ In this example, we load images from an AWS S3 bucket and run a simple function
More Resources
^^^^^^^^^^^^^^

* `10-minute tour of Daft <https://getdaft.io/project/docs/en/latest/learn/10-min.html>`_ - learn more about Daft's full range of capabilities including dataloading from URLs, joins, user-defined functions (UDF), groupby, aggregations and more.
* `User Guide <https://getdaft.io/project/docs/en/latest/learn/user_guides.html>`_ - take a deep-dive into each topic within Daft
* `API Reference <https://getdaft.io/project/docs/en/latest/api_docs/index.html>`_ - API reference for public classes/functions of Daft
* `10-minute tour of Daft <https://www.getdaft.io/projects/docs/en/latest/learn/10-min.html>`_ - learn more about Daft's full range of capabilities including dataloading from URLs, joins, user-defined functions (UDF), groupby, aggregations and more.
* `User Guide <https://www.getdaft.io/projects/docs/en/latest/learn/user_guides.html>`_ - take a deep-dive into each topic within Daft
* `API Reference <https://www.getdaft.io/projects/docs/en/latest/api_docs/index.html>`_ - API reference for public classes/functions of Daft

Contributing
------------
Expand All @@ -100,7 +100,7 @@ The data that we collect is:
2. **Metadata-only:** we do not collect any of our users’ proprietary code or data
3. **For development only:** we do not buy or sell any user data

Please see our `documentation <https://getdaft.io/project/docs/en/latest/telemetry.html>`_ for more details.
Please see our `documentation <https://www.getdaft.io/projects/docs/en/latest/telemetry.html>`_ for more details.

License
-------
Expand Down
4 changes: 2 additions & 2 deletions daft/filesystem.py
Expand Up @@ -28,7 +28,7 @@ def _get_s3fs_kwargs() -> dict[str, Any]:
import botocore.session
except ImportError:
logger.error(
"Error when importing botocore. Install getdaft[aws] for the required 3rd party dependencies to interact with AWS S3 (https://getdaft.io/project/docs/en/latest/learn/install.html)"
"Error when importing botocore. Install getdaft[aws] for the required 3rd party dependencies to interact with AWS S3 (https://www.getdaft.io/projects/docs/en/latest/learn/install.html)"
)
raise

Expand All @@ -54,7 +54,7 @@ def get_filesystem(protocol: str, **kwargs) -> AbstractFileSystem:
klass = get_filesystem_class(protocol)
except ImportError:
logger.error(
f"Error when importing dependencies for accessing data with: {protocol}. Please ensure that getdaft was installed with the appropriate extra dependencies (https://getdaft.io/project/docs/en/latest/learn/install.html)"
f"Error when importing dependencies for accessing data with: {protocol}. Please ensure that getdaft was installed with the appropriate extra dependencies (https://www.getdaft.io/projects/docs/en/latest/learn/install.html)"
)
raise

Expand Down
2 changes: 1 addition & 1 deletion daft/runners/ray_runner.py
Expand Up @@ -11,7 +11,7 @@
import ray
except ImportError:
logger.error(
f"Error when importing Ray. Please ensure that getdaft was installed with the Ray extras tag: getdaft[ray] (https://getdaft.io/project/docs/en/latest/learn/install.html)"
f"Error when importing Ray. Please ensure that getdaft was installed with the Ray extras tag: getdaft[ray] (https://www.getdaft.io/projects/docs/en/latest/learn/install.html)"
)
raise

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -44,7 +44,7 @@ ray = [
serving = ["fastapi", "docker", "uvicorn", "cloudpickle", "boto3", "PyYAML"]

[project.urls]
homepage = "https://getdaft.io"
homepage = "https://www.getdaft.io"
repository = "https://github.com/Eventual-Inc/Daft"

[tool]
Expand Down

0 comments on commit c488ba0

Please sign in to comment.