Skip to content

Commit 959bf88

Browse files
release: 0.1.0-alpha.18 (#24)
* chore(internal): version bump * chore: update pypi package name * feat(api): manual updates * chore(internal): version bump * feat(api): manual updates * release: 0.1.0-alpha.18 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 2f9e18d commit 959bf88

File tree

11 files changed

+212
-208
lines changed

11 files changed

+212
-208
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.17"
2+
".": "0.1.0-alpha.18"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 168
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/digitalocean%2Fgradientai-f8e8c290636c1e218efcf7bfe92ba7570c11690754d21287d838919fbc943a80.yml
33
openapi_spec_hash: 1eddf488ecbe415efb45445697716f5d
4-
config_hash: 0a72b6161859b504ed3b5a2a142ba5a5
4+
config_hash: bf733b2049f2d40e594a316a42878458

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 0.1.0-alpha.18 (2025-07-19)
4+
5+
Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/digitalocean/gradientai-python/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
6+
7+
### Features
8+
9+
* **api:** manual updates ([92d54ed](https://github.com/digitalocean/gradientai-python/commit/92d54edfff94931f10fb8dac822764edf6fca6bd))
10+
* **api:** manual updates ([688982c](https://github.com/digitalocean/gradientai-python/commit/688982c143e0ebca62f6ac39c1e074a2fd4083fc))
11+
12+
13+
### Chores
14+
15+
* **internal:** version bump ([ecb4bae](https://github.com/digitalocean/gradientai-python/commit/ecb4baedce933efc4ae99e0ef47100a02a68c9cd))
16+
* **internal:** version bump ([feb32ce](https://github.com/digitalocean/gradientai-python/commit/feb32ce78b107e9414be87e8c34d8c3274105cb4))
17+
* update pypi package name ([656dfe0](https://github.com/digitalocean/gradientai-python/commit/656dfe01d8e301dd1f93b3fa447434e6a5b41270))
18+
319
## 0.1.0-alpha.17 (2025-07-19)
420

521
Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/digitalocean/gradientai-python/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GradientAI Python API library
22

33
<!-- prettier-ignore -->
4-
[![PyPI version](https://img.shields.io/pypi/v/c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python.svg?label=pypi%20(stable))](https://pypi.org/project/c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python/)
4+
[![PyPI version](https://img.shields.io/pypi/v/do_gradientai.svg?label=pypi%20(stable))](https://pypi.org/project/do_gradientai/)
55

66
The GradientAI Python library provides convenient access to the GradientAI REST API from any Python 3.8+
77
application. The library includes type definitions for all request params and response fields,
@@ -17,7 +17,7 @@ The REST API documentation can be found on [developers.digitalocean.com](https:/
1717

1818
```sh
1919
# install from PyPI
20-
pip install --pre c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
20+
pip install --pre do_gradientai
2121
```
2222

2323
## Usage
@@ -127,7 +127,7 @@ You can enable this by installing `aiohttp`:
127127

128128
```sh
129129
# install from PyPI
130-
pip install --pre c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python[aiohttp]
130+
pip install --pre do_gradientai[aiohttp]
131131
```
132132

133133
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:

api.md

Lines changed: 106 additions & 106 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
2-
name = "c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python"
3-
version = "0.1.0-alpha.17"
2+
name = "do_gradientai"
3+
version = "0.1.0-alpha.18"
44
description = "The official Python library for GradientAI"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

requirements-dev.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
aiohappyeyeballs==2.6.1
1414
# via aiohttp
1515
aiohttp==3.12.8
16-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
16+
# via do-gradientai
1717
# via httpx-aiohttp
1818
aiosignal==1.3.2
1919
# via aiohttp
2020
annotated-types==0.6.0
2121
# via pydantic
2222
anyio==4.4.0
23-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
23+
# via do-gradientai
2424
# via httpx
2525
argcomplete==3.1.2
2626
# via nox
@@ -37,7 +37,7 @@ dirty-equals==0.6.0
3737
distlib==0.3.7
3838
# via virtualenv
3939
distro==1.8.0
40-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
40+
# via do-gradientai
4141
exceptiongroup==1.2.2
4242
# via anyio
4343
# via pytest
@@ -53,11 +53,11 @@ h11==0.16.0
5353
httpcore==1.0.9
5454
# via httpx
5555
httpx==0.28.1
56-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
56+
# via do-gradientai
5757
# via httpx-aiohttp
5858
# via respx
5959
httpx-aiohttp==0.1.8
60-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
60+
# via do-gradientai
6161
idna==3.4
6262
# via anyio
6363
# via httpx
@@ -90,7 +90,7 @@ propcache==0.3.1
9090
# via aiohttp
9191
# via yarl
9292
pydantic==2.10.3
93-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
93+
# via do-gradientai
9494
pydantic-core==2.27.1
9595
# via pydantic
9696
pygments==2.18.0
@@ -114,14 +114,14 @@ six==1.16.0
114114
# via python-dateutil
115115
sniffio==1.3.0
116116
# via anyio
117-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
117+
# via do-gradientai
118118
time-machine==2.9.0
119119
tomli==2.0.2
120120
# via mypy
121121
# via pytest
122122
typing-extensions==4.12.2
123123
# via anyio
124-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
124+
# via do-gradientai
125125
# via multidict
126126
# via mypy
127127
# via pydantic

requirements.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
aiohappyeyeballs==2.6.1
1414
# via aiohttp
1515
aiohttp==3.12.8
16-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
16+
# via do-gradientai
1717
# via httpx-aiohttp
1818
aiosignal==1.3.2
1919
# via aiohttp
2020
annotated-types==0.6.0
2121
# via pydantic
2222
anyio==4.4.0
23-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
23+
# via do-gradientai
2424
# via httpx
2525
async-timeout==5.0.1
2626
# via aiohttp
@@ -30,7 +30,7 @@ certifi==2023.7.22
3030
# via httpcore
3131
# via httpx
3232
distro==1.8.0
33-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
33+
# via do-gradientai
3434
exceptiongroup==1.2.2
3535
# via anyio
3636
frozenlist==1.6.2
@@ -41,10 +41,10 @@ h11==0.16.0
4141
httpcore==1.0.9
4242
# via httpx
4343
httpx==0.28.1
44-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
44+
# via do-gradientai
4545
# via httpx-aiohttp
4646
httpx-aiohttp==0.1.8
47-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
47+
# via do-gradientai
4848
idna==3.4
4949
# via anyio
5050
# via httpx
@@ -56,15 +56,15 @@ propcache==0.3.1
5656
# via aiohttp
5757
# via yarl
5858
pydantic==2.10.3
59-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
59+
# via do-gradientai
6060
pydantic-core==2.27.1
6161
# via pydantic
6262
sniffio==1.3.0
6363
# via anyio
64-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
64+
# via do-gradientai
6565
typing-extensions==4.12.2
6666
# via anyio
67-
# via c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
67+
# via do-gradientai
6868
# via multidict
6969
# via pydantic
7070
# via pydantic-core

0 commit comments

Comments
 (0)