Skip to content

Commit be5dbda

Browse files
chore: update repository references in git_push.sh, pyproject.toml, and README.md
Changed placeholder values to actual user and repository names for consistency across the project files.
1 parent 55ba3c4 commit be5dbda

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Python 3.9+
1919
If the python package is hosted on a repository, you can install directly using:
2020

2121
```sh
22-
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
22+
pip install git+https://github.com/lomiafrica/lomi-python-sdk.git
2323
```
24-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
24+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/lomiafrica/lomi-python-sdk.git`)
2525

2626
Then import the package:
2727
```python

git_push.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ if [ "$git_host" = "" ]; then
1414
fi
1515

1616
if [ "$git_user_id" = "" ]; then
17-
git_user_id="GIT_USER_ID"
17+
git_user_id="lomiafrica"
1818
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
1919
fi
2020

2121
if [ "$git_repo_id" = "" ]; then
22-
git_repo_id="GIT_REPO_ID"
22+
git_repo_id="lomi-python-sdk"
2323
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
2424
fi
2525

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies = [
1818
]
1919

2020
[project.urls]
21-
Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
21+
Repository = "https://github.com/lomiafrica/lomi-python-sdk"
2222

2323
[tool.poetry]
2424
requires-poetry = ">=2.0"

0 commit comments

Comments
 (0)