Skip to content

Commit 9fc3b35

Browse files
chore: update references to new repo name (#363)
1 parent bd77995 commit 9fc3b35

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.devcontainer/post_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ex
33

44
# Install package
5-
sudo su - vscode bash -c "cd /workspaces/unleash-client-python; pip install -U -r requirements.txt; python -m build; ./scripts/get-spec.sh;"
5+
sudo su - vscode bash -c "cd /workspaces/unleash-python-sdk; pip install -U -r requirements.txt; python -m build; ./scripts/get-spec.sh;"
66

77
# Install pre-config
88
pip install pre-commit

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to unleash-client-python
1+
# Contributing to unleash-python-sdk
22
We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
33

44
- Reporting a bug

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Unleash Client SDK for Python
1+
# Unleash SDK for Python
22

3-
![](https://github.com/unleash/unleash-client-python/workflows/CI/badge.svg?branch=main) [![Coverage Status](https://coveralls.io/repos/github/Unleash/unleash-client-python/badge.svg?branch=main)](https://coveralls.io/github/Unleash/unleash-client-python?branch=main) [![PyPI version](https://badge.fury.io/py/UnleashClient.svg)](https://badge.fury.io/py/UnleashClient) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/UnleashClient.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3+
![](https://github.com/unleash/unleash-python-sdk/workflows/CI/badge.svg?branch=main) [![Coverage Status](https://coveralls.io/repos/github/Unleash/unleash-python-sdk/badge.svg?branch=main)](https://coveralls.io/github/Unleash/unleash-python-sdk?branch=main) [![PyPI version](https://badge.fury.io/py/UnleashClient.svg)](https://badge.fury.io/py/UnleashClient) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/UnleashClient.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
44

55
Unleash is a private, secure, and scalable [feature management platform](https://www.getunleash.io/) built to reduce the risk of releasing new features and accelerate software development. This server-side Python SDK is designed to help you integrate with Unleash and evaluate feature flags inside your application.
66

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# -- Project information -----------------------------------------------------
1818

19-
project = "unleash-client-python"
19+
project = "unleash-python-sdk"
2020
copyright = "2022 Unleash"
2121
author = "Ivan Lee"
2222
version = version("UnleashClient")
@@ -65,6 +65,6 @@
6565
html_context = {
6666
"display_github": True,
6767
"github_user": "unleash",
68-
"github_repo": "unleash-client-python",
68+
"github_repo": "unleash-python-sdk",
6969
"github_version": "main/docs/",
7070
}

docs/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Using ``UnleashClient`` with Gitlab
115115

116116
`Gitlab's feature flags <https://docs.gitlab.com/ee/user/project/operations/feature_flags.html>`_ only supports the features URL. (API calls to the registration URL and metrics URL will fail with HTTP Error code 401.)
117117

118-
If using `unleash-client-python` with Gitlab's feature flags, we recommend initializing the client with `disable_metrics` = True and `disable_registration` = True.
118+
If using `unleash-python-sdk` with Gitlab's feature flags, we recommend initializing the client with `disable_metrics` = True and `disable_registration` = True.
119119

120120
.. code-block:: python
121121

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ dependencies=[
3535
]
3636

3737
[project.urls]
38-
Homepage = "https://github.com/Unleash/unleash-client-python"
39-
Documentation = "https://docs.getunleash.io/unleash-client-python"
40-
Changelog = "https://github.com/Unleash/unleash-client-python/blob/main/CHANGELOG.md"
41-
Repository = "https://github.com/Unleash/unleash-client-python"
42-
Issues = "https://github.com/Unleash/unleash-client-python/issues"
38+
Homepage = "https://github.com/Unleash/unleash-python-sdk"
39+
Documentation = "https://docs.getunleash.io/unleash-python-sdk"
40+
Changelog = "https://github.com/Unleash/unleash-python-sdk/blob/main/CHANGELOG.md"
41+
Repository = "https://github.com/Unleash/unleash-python-sdk"
42+
Issues = "https://github.com/Unleash/unleash-python-sdk/issues"
4343

4444
[tool.isort]
4545
profile = "black"

0 commit comments

Comments
 (0)