Skip to content

Commit 2270db2

Browse files
authored
update the repo name... (#78)
1 parent 0c3709e commit 2270db2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
📦 [Examples](#saving-and-loading-models)
1111
📚 [Documentation](https://lightning.ai/docs/overview/model-registry)
1212
💬 [Get help on Discord](https://discord.com/invite/XncpTy7DSt)
13-
📋 [License: Apache 2.0](https://github.com/Lightning-AI/models/blob/main/LICENSE)
13+
📋 [License: Apache 2.0](https://github.com/Lightning-AI/litModels/blob/main/LICENSE)
1414

1515
</div>
1616

@@ -37,7 +37,7 @@ pip install -U litmodels
3737
Or install directly from source:
3838

3939
```bash
40-
pip install https://github.com/Lightning-AI/models/archive/refs/heads/main.zip
40+
pip install https://github.com/Lightning-AI/litModels/archive/refs/heads/main.zip
4141
```
4242

4343
## Saving and Loading Models

docs/source/_templates/theme_variables.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{%- set external_urls = {
2-
'github': 'https://github.com/Lightning-AI/models',
3-
'github_issues': 'https://github.com/Lightning-AI/models/issues',
2+
'github': 'https://github.com/Lightning-AI/litModels',
3+
'github_issues': 'https://github.com/Lightning-AI/litModels/issues',
44
'contributing': 'https://github.com/Lightning-AI/lightning/blob/master/CONTRIBUTING.md',
55
'governance': 'https://github.com/Lightning-AI/lightning/blob/master/governance.md',
66
'docs': 'https://lightning-ai.github.io/models/',

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def _prepare_extras(requirements_dir: str = _PATH_REQUIRES, skip_files: tuple =
5959
author=about.__author__,
6060
author_email=about.__author_email__,
6161
url=about.__homepage__,
62-
download_url="https://github.com/Lightning-AI/models",
62+
download_url="https://github.com/Lightning-AI/litModels",
6363
license=about.__license__,
6464
packages=find_packages(where="src"),
6565
package_dir={"": "src"},
@@ -73,9 +73,9 @@ def _prepare_extras(requirements_dir: str = _PATH_REQUIRES, skip_files: tuple =
7373
install_requires=_load_requirements(),
7474
extras_require=_prepare_extras(),
7575
project_urls={
76-
"Bug Tracker": "https://github.com/Lightning-AI/models/issues",
77-
"Documentation": "https://lightning-ai.github.io/models/",
78-
"Source Code": "https://github.com/Lightning-AI/models",
76+
"Bug Tracker": "https://github.com/Lightning-AI/litModels/issues",
77+
"Documentation": "https://lightning-ai.github.io/litModels/",
78+
"Source Code": "https://github.com/Lightning-AI/litModels",
7979
},
8080
classifiers=[
8181
"Environment :: Console",

src/litmodels/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__author_email__ = "[email protected]"
44
__license__ = "Apache-2.0"
55
__copyright__ = f"Copyright (c) 2024-2025, {__author__}."
6-
__homepage__ = "https://github.com/Lightning-AI/models"
6+
__homepage__ = "https://github.com/Lightning-AI/litModels"
77
__docs__ = "Lightning AI Model hub."
88

99
__all__ = [

0 commit comments

Comments
 (0)