Skip to content

Commit ef41522

Browse files
feat(api): manual updates
1 parent f9c5565 commit ef41522

34 files changed

+86
-359
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/release-doctor.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.release-please-manifest.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 42
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-3d7da4b8ef2ed30aa32c4fb3e98e498e67402e91aaa5fd4c628fc080bfe82ea1.yml
33
openapi_spec_hash: aaa50fcbccec6f2cf1165f34bc6ac886
4-
config_hash: af15f7df8a4590c14cdce4460983aba6
4+
config_hash: 84bf9f929b0248a6cdf2d526331ed8eb

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://[email protected]/imagekit-developer/imagekit-python#master.git
65+
$ pip install git+ssh://[email protected]/stainless-sdks/imagekit-python.git
6666
```
6767

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

121121
### Publish with a GitHub workflow
122122

123-
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/imagekit-developer/imagekit-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
123+
You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/stainless-sdks/imagekit-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up.
124124

125125
### Publish manually
126126

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ The REST API documentation can be found on [imagekit.io](https://imagekit.io/doc
1616
## Installation
1717

1818
```sh
19-
# install from the production repo
20-
pip install git+ssh://[email protected]/imagekit-developer/imagekit-python#master.git
19+
# install from this staging repo
20+
pip install git+ssh://[email protected]/stainless-sdks/imagekit-python.git
2121
```
2222

2323
> [!NOTE]
@@ -91,8 +91,8 @@ By default, the async client uses `httpx` for HTTP requests. However, for improv
9191
You can enable this by installing `aiohttp`:
9292

9393
```sh
94-
# install from the production repo
95-
pip install 'imagekit[aiohttp] @ git+ssh://[email protected]/imagekit-developer/imagekit-python#master.git'
94+
# install from this staging repo
95+
pip install 'imagekit[aiohttp] @ git+ssh://[email protected]/stainless-sdks/imagekit-python.git'
9696
```
9797

9898
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
@@ -317,9 +317,9 @@ file = response.parse() # get the object that `files.upload()` would have retur
317317
print(file.video_codec)
318318
```
319319

320-
These methods return an [`APIResponse`](https://github.com/imagekit-developer/imagekit-python/tree/master/src/imagekit/_response.py) object.
320+
These methods return an [`APIResponse`](https://github.com/stainless-sdks/imagekit-python/tree/main/src/imagekit/_response.py) object.
321321

322-
The async client returns an [`AsyncAPIResponse`](https://github.com/imagekit-developer/imagekit-python/tree/master/src/imagekit/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
322+
The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/imagekit-python/tree/main/src/imagekit/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
323323

324324
#### `.with_streaming_response`
325325

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

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

429-
We are keen for your feedback; please open an [issue](https://www.github.com/imagekit-developer/imagekit-python/issues) with questions, bugs, or suggestions.
429+
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/imagekit-python/issues) with questions, bugs, or suggestions.
430430

431431
### Determining the installed version
432432

bin/check-release-environment

Lines changed: 0 additions & 21 deletions
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ classifiers = [
3535
]
3636

3737
[project.urls]
38-
Homepage = "https://github.com/imagekit-developer/imagekit-python"
39-
Repository = "https://github.com/imagekit-developer/imagekit-python"
38+
Homepage = "https://github.com/stainless-sdks/imagekit-python"
39+
Repository = "https://github.com/stainless-sdks/imagekit-python"
4040

4141
[project.optional-dependencies]
4242
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.8"]
43-
webhooks = ["standardwebhooks"]
4443

4544
[tool.rye]
4645
managed = true
@@ -126,7 +125,7 @@ path = "README.md"
126125
[[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]]
127126
# replace relative links with absolute links
128127
pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)'
129-
replacement = '[\1](https://github.com/imagekit-developer/imagekit-python/tree/master/\g<2>)'
128+
replacement = '[\1](https://github.com/stainless-sdks/imagekit-python/tree/main/\g<2>)'
130129

131130
[tool.pytest.ini_options]
132131
testpaths = ["tests"]

release-please-config.json

Lines changed: 0 additions & 66 deletions
This file was deleted.

requirements-dev.lock

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,11 @@ async-timeout==5.0.1
2828
# via aiohttp
2929
attrs==25.3.0
3030
# via aiohttp
31-
# via standardwebhooks
3231
certifi==2023.7.22
3332
# via httpcore
3433
# via httpx
3534
colorlog==6.7.0
3635
# via nox
37-
deprecated==1.2.18
38-
# via standardwebhooks
3936
dirty-equals==0.6.0
4037
distlib==0.3.7
4138
# via virtualenv
@@ -59,7 +56,6 @@ httpx==0.28.1
5956
# via httpx-aiohttp
6057
# via imagekit
6158
# via respx
62-
# via standardwebhooks
6359
httpx-aiohttp==0.1.8
6460
# via imagekit
6561
idna==3.4
@@ -106,7 +102,6 @@ pytest==8.3.3
106102
pytest-asyncio==0.24.0
107103
pytest-xdist==3.7.0
108104
python-dateutil==2.8.2
109-
# via standardwebhooks
110105
# via time-machine
111106
pytz==2023.3.post1
112107
# via dirty-equals
@@ -120,16 +115,10 @@ six==1.16.0
120115
sniffio==1.3.0
121116
# via anyio
122117
# via imagekit
123-
standardwebhooks==1.0.0
124-
# via imagekit
125118
time-machine==2.9.0
126119
tomli==2.0.2
127120
# via mypy
128121
# via pytest
129-
types-deprecated==1.2.15.20250304
130-
# via standardwebhooks
131-
types-python-dateutil==2.9.0.20250822
132-
# via standardwebhooks
133122
typing-extensions==4.12.2
134123
# via anyio
135124
# via imagekit
@@ -140,8 +129,6 @@ typing-extensions==4.12.2
140129
# via pyright
141130
virtualenv==20.24.5
142131
# via nox
143-
wrapt==1.17.3
144-
# via deprecated
145132
yarl==1.20.0
146133
# via aiohttp
147134
zipp==3.17.0

0 commit comments

Comments
 (0)