Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix repo link #29

Merged
merged 1 commit into from
Sep 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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__ = "pytorch@lightning.ai"
__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