Skip to content

Commit cdd3442

Browse files
authored
Upgrade min version of "nox" so that it's compatible with "uv" as a backend. (#1033)
1 parent 651c284 commit cdd3442

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 28.1.1
2+
- Upgrade minimum version of nox so it's compatible with the "uv" backend.
3+
14
* 28.1.0
25
- Google Ads API v22_0 release.
36

google/ads/googleads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import google.ads.googleads.errors
2020
import google.ads.googleads.util
2121

22-
VERSION = "28.1.0"
22+
VERSION = "28.1.1"
2323

2424
# Checks if the current runtime is Python 3.9.
2525
if sys.version_info.major == 3 and sys.version_info.minor <= 9:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta"
1818

1919
[project]
2020
name = "google-ads"
21-
version = "28.1.0"
21+
version = "28.1.1"
2222
description = "Client library for the Google Ads API"
2323
readme = "./README.rst"
2424
requires-python = ">=3.9, <3.14"
@@ -59,7 +59,7 @@ dependencies = [
5959
]
6060

6161
[project.optional-dependencies]
62-
tests = ["nox >= 2020.12.31, < 2022.6"]
62+
tests = ["nox >= 2025.02.09"]
6363

6464
[project.urls]
6565
Repository = "https://github.com/googleads/google-ads-python"

0 commit comments

Comments
 (0)