You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Changelog
2
2
3
+
## 3.5.0 (2025-10-14)
4
+
5
+
Full Changelog: [v3.4.0...v3.5.0](https://github.com/digitalocean/gradient-python/compare/v3.4.0...v3.5.0)
6
+
7
+
### Features
8
+
9
+
***api:** update via SDK Studio ([#74](https://github.com/digitalocean/gradient-python/issues/74)) ([e1ab040](https://github.com/digitalocean/gradient-python/commit/e1ab0407e88f5394f5c299940a4b2fe72dbbf70e))
10
+
11
+
12
+
### Chores
13
+
14
+
***internal:** detect missing future annotations with ruff ([0fb9f92](https://github.com/digitalocean/gradient-python/commit/0fb9f9254a0f72a721fa73823399e58eec723f1a))
15
+
3
16
## 3.4.0 (2025-10-09)
4
17
5
18
Full Changelog: [v3.3.0...v3.4.0](https://github.com/digitalocean/gradient-python/compare/v3.3.0...v3.4.0)
Copy file name to clipboardExpand all lines: pyproject.toml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "gradient"
3
-
version = "3.4.0"
3
+
version = "3.5.0"
4
4
description = "The official Python library for the Gradient API"
5
5
dynamic = ["readme"]
6
6
license = "Apache-2.0"
@@ -211,6 +211,8 @@ select = [
211
211
"B",
212
212
# remove unused imports
213
213
"F401",
214
+
# check for missing future annotations
215
+
"FA102",
214
216
# bare except statements
215
217
"E722",
216
218
# unused arguments
@@ -233,6 +235,8 @@ unfixable = [
233
235
"T203",
234
236
]
235
237
238
+
extend-safe-fixes = ["FA102"]
239
+
236
240
[tool.ruff.lint.flake8-tidy-imports.banned-api]
237
241
"functools.lru_cache".msg = "This function does not retain type information for the wrapped function's arguments; The `lru_cache` function from `_utils` should be used instead"
'"Could not resolve authentication method. Expected access_token, agent_access_key, or model_access_key to be set. Or for the `Authorization` headers to be explicitly omitted"'
'"Could not resolve authentication method. Expected access_token, agent_access_key, or model_access_key to be set. Or for the `Authorization` headers to be explicitly omitted"'
0 commit comments