Skip to content

Commit 6603668

Browse files
chore: update SDK settings
1 parent 8278600 commit 6603668

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow is triggered when a GitHub release is created.
22
# It can also be run manually to re-publish to PyPI in case it failed for some reason.
3-
# You can run this workflow by navigating to https://www.github.com/brand-dot-dev/python-sdk/actions/workflows/publish-pypi.yml
3+
# You can run this workflow by navigating to https://www.github.com/context-dot-dev/deprecated-brand-python-sdk/actions/workflows/publish-pypi.yml
44
name: Publish PyPI
55
on:
66
workflow_dispatch:

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'brand-dot-dev/python-sdk' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'context-dot-dev/deprecated-brand-python-sdk' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v6

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 20
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-e6540b8abe35309c0b139a2b5985bf318903714d712b866e282da36b87f1ee72.yml
33
openapi_spec_hash: 2c1b55e2428c0b6c5a91d1d6a2ba9980
4-
config_hash: 4cd3173ea1cce7183640aae49cfbb374
4+
config_hash: e69c2ec557576408de0bd343c26f49bc

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ If you’d like to use the repository from source, you can either install from g
6262
To install via git:
6363

6464
```sh
65-
$ pip install git+ssh://git@github.com/brand-dot-dev/python-sdk.git
65+
$ pip install git+ssh://git@github.com/context-dot-dev/deprecated-brand-python-sdk.git
6666
```
6767

6868
Alternatively, you can build from source and install the wheel file:
@@ -113,7 +113,7 @@ the changes aren't made through the automated pipeline, you may want to make rel
113113

114114
### Publish with a GitHub workflow
115115

116-
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/brand-dot-dev/python-sdk/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
116+
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/context-dot-dev/deprecated-brand-python-sdk/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
117117

118118
### Publish manually
119119

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ brand = response.parse() # get the object that `brand.retrieve()` would have re
283283
print(brand.brand)
284284
```
285285

286-
These methods return an [`APIResponse`](https://github.com/brand-dot-dev/python-sdk/tree/main/src/brand/dev/_response.py) object.
286+
These methods return an [`APIResponse`](https://github.com/context-dot-dev/deprecated-brand-python-sdk/tree/main/src/brand/dev/_response.py) object.
287287

288-
The async client returns an [`AsyncAPIResponse`](https://github.com/brand-dot-dev/python-sdk/tree/main/src/brand/dev/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
288+
The async client returns an [`AsyncAPIResponse`](https://github.com/context-dot-dev/deprecated-brand-python-sdk/tree/main/src/brand/dev/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
289289

290290
#### `.with_streaming_response`
291291

@@ -391,7 +391,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
391391

392392
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
393393

394-
We are keen for your feedback; please open an [issue](https://www.github.com/brand-dot-dev/python-sdk/issues) with questions, bugs, or suggestions.
394+
We are keen for your feedback; please open an [issue](https://www.github.com/context-dot-dev/deprecated-brand-python-sdk/issues) with questions, bugs, or suggestions.
395395

396396
### Determining the installed version
397397

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ classifiers = [
3737
]
3838

3939
[project.urls]
40-
Homepage = "https://github.com/brand-dot-dev/python-sdk"
41-
Repository = "https://github.com/brand-dot-dev/python-sdk"
40+
Homepage = "https://github.com/context-dot-dev/deprecated-brand-python-sdk"
41+
Repository = "https://github.com/context-dot-dev/deprecated-brand-python-sdk"
4242

4343
[project.optional-dependencies]
4444
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
@@ -126,7 +126,7 @@ path = "README.md"
126126
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
127127
# replace relative links with absolute links
128128
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
129-
replacement = '[\1](https://github.com/brand-dot-dev/python-sdk/tree/main/\g<2>)'
129+
replacement = '[\1](https://github.com/context-dot-dev/deprecated-brand-python-sdk/tree/main/\g<2>)'
130130

131131
[tool.pytest.ini_options]
132132
testpaths = ["tests"]

src/brand/dev/resources/brand.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def with_raw_response(self) -> BrandResourceWithRawResponse:
7171
This property can be used as a prefix for any HTTP method call to return
7272
the raw response object instead of the parsed content.
7373
74-
For more information, see https://www.github.com/brand-dot-dev/python-sdk#accessing-raw-response-data-eg-headers
74+
For more information, see https://www.github.com/context-dot-dev/deprecated-brand-python-sdk#accessing-raw-response-data-eg-headers
7575
"""
7676
return BrandResourceWithRawResponse(self)
7777

@@ -80,7 +80,7 @@ def with_streaming_response(self) -> BrandResourceWithStreamingResponse:
8080
"""
8181
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
8282
83-
For more information, see https://www.github.com/brand-dot-dev/python-sdk#with_streaming_response
83+
For more information, see https://www.github.com/context-dot-dev/deprecated-brand-python-sdk#with_streaming_response
8484
"""
8585
return BrandResourceWithStreamingResponse(self)
8686

@@ -2166,7 +2166,7 @@ def with_raw_response(self) -> AsyncBrandResourceWithRawResponse:
21662166
This property can be used as a prefix for any HTTP method call to return
21672167
the raw response object instead of the parsed content.
21682168
2169-
For more information, see https://www.github.com/brand-dot-dev/python-sdk#accessing-raw-response-data-eg-headers
2169+
For more information, see https://www.github.com/context-dot-dev/deprecated-brand-python-sdk#accessing-raw-response-data-eg-headers
21702170
"""
21712171
return AsyncBrandResourceWithRawResponse(self)
21722172

@@ -2175,7 +2175,7 @@ def with_streaming_response(self) -> AsyncBrandResourceWithStreamingResponse:
21752175
"""
21762176
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
21772177
2178-
For more information, see https://www.github.com/brand-dot-dev/python-sdk#with_streaming_response
2178+
For more information, see https://www.github.com/context-dot-dev/deprecated-brand-python-sdk#with_streaming_response
21792179
"""
21802180
return AsyncBrandResourceWithStreamingResponse(self)
21812181

0 commit comments

Comments
 (0)