Skip to content

Commit

Permalink
Fix repo link
Browse files Browse the repository at this point in the history
  • Loading branch information
carmocca committed Sep 2, 2022
1 parent 600f186 commit efd1132
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Devtools

[![UnitTests](https://github.com/Lightning-AI/lightning-tools/actions/workflows/ci-testing.yml/badge.svg?event=push)](https://github.com/Lightning-AI/lightning-tools/actions/workflows/ci-testing.yml)
[![Apply checks](https://github.com/Lightning-AI/lightning-tools/actions/workflows/ci-use-checks.yml/badge.svg?event=push)](https://github.com/Lightning-AI/lightning-tools/actions/workflows/ci-use-checks.yml)
[![UnitTests](https://github.com/Lightning-AI/utilities/actions/workflows/ci-testing.yml/badge.svg?event=push)](https://github.com/Lightning-AI/utilities/actions/workflows/ci-testing.yml)
[![Apply checks](https://github.com/Lightning-AI/utilities/actions/workflows/ci-use-checks.yml/badge.svg?event=push)](https://github.com/Lightning-AI/utilities/actions/workflows/ci-use-checks.yml)
[![Documentation Status](https://readthedocs.org/projects/lightning_tools/badge/?version=latest)](https://lightning-tools.readthedocs.io/en/latest/?badge=latest)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Lightning-AI/lightning-tools/main.svg?badge_token=mqheL1-cTn-280Vx4cJUdg)](https://results.pre-commit.ci/latest/github/Lightning-AI/devtools/main?badge_token=mqheL1-cTn-280Vx4cJUdg)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Lightning-AI/utilities/main.svg?badge_token=mqheL1-cTn-280Vx4cJUdg)](https://results.pre-commit.ci/latest/github/Lightning-AI/devtools/main?badge_token=mqheL1-cTn-280Vx4cJUdg)

__This repository covers the following use-cases:__

Expand All @@ -23,16 +23,16 @@ on: [push]

jobs:
check-schema:
uses: Lightning-AI/lightning-tools/.github/workflows/check-schema.yml@main
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@main
with:
azure-dir: ""
```
See usage of other workflows in [.github/workflows/ci_use-checks.yml](https://github.com/Lightning-AI/lightning-tools/tree/main/.github/workflows/ci_use-checks.yml).
See usage of other workflows in [.github/workflows/ci_use-checks.yml](https://github.com/Lightning-AI/utilities/tree/main/.github/workflows/ci_use-checks.yml).
## 2. Reusable composite actions
See available composite actions [.github/actions/](https://github.com/Lightning-AI/lightning-tools/tree/main/.github/actions).
See available composite actions [.github/actions/](https://github.com/Lightning-AI/utilities/tree/main/.github/actions).
__Usage:__
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: Lightning-AI/lightning-tools/.github/actions/cache
- uses: Lightning-AI/utilities/.github/actions/cache
with:
python-version: 3.9
requires: oldest
Expand All @@ -65,7 +65,7 @@ The package provides common CLI commands.
From source:

```bash
pip install https://github.com/Lightning-AI/lightning-tools/archive/refs/heads/main.zip
pip install https://github.com/Lightning-AI/utilities/archive/refs/heads/main.zip
```

From pypi:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/_templates/theme_variables.jinja
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{%- set external_urls = {
'github': 'https://github.com/Lightning-AI/lightning-tools',
'github_issues': 'https://github.com/Lightning-AI/lightning-tools/issues',
'github': 'https://github.com/Lightning-AI/utilities',
'github_issues': 'https://github.com/Lightning-AI/utilities/issues',
'contributing': 'https://github.com/Lightning-AI/lightning/blob/master/CONTRIBUTING.md',
'governance': 'https://github.com/Lightning-AI/lightning/blob/master/governance.md',
'docs': 'https://dev-toolbox.rtfd.io/en/latest',
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _load_py_module(fname, pkg="lightning_tools"):
author=about.__author__,
author_email=about.__author_email__,
url=about.__homepage__,
download_url="https://github.com/Lightning-AI/lightning-tools",
download_url="https://github.com/Lightning-AI/utilities",
license=about.__license__,
packages=find_packages(where="src"),
package_dir={"": "src"},
Expand All @@ -44,9 +44,9 @@ def _load_py_module(fname, pkg="lightning_tools"):
setup_requires=[],
install_requires=requirements,
project_urls={
"Bug Tracker": "https://github.com/Lightning-AI/lightning-tools/issues",
"Bug Tracker": "https://github.com/Lightning-AI/utilities/issues",
"Documentation": "https://dev-toolbox.rtfd.io/en/latest/", # TODO: Update domain
"Source Code": "https://github.com/Lightning-AI/lightning-tools",
"Source Code": "https://github.com/Lightning-AI/utilities",
},
classifiers=[
"Environment :: Console",
Expand Down
2 changes: 1 addition & 1 deletion src/lightning_tools/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__author_email__ = "[email protected]"
__license__ = "Apache-2.0"
__copyright__ = f"Copyright (c) 2022-{time.strftime('%Y')}, {__author__}."
__homepage__ = "https://github.com/Lightning-AI/lightning-tools"
__homepage__ = "https://github.com/Lightning-AI/utilities"
__docs__ = "PyTorch Lightning Sample project."
__long_doc__ = """
What is it?
Expand Down

0 comments on commit efd1132

Please sign in to comment.