Skip to content

Commit de3ccea

Browse files
authored
Release 28.0.0.post2 (#1026)
Update package so it only installs into Python 3.8. This is to prevent it from being installed into other Python versions when the user just runs `pip install google-ads`
1 parent ae4093a commit de3ccea

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 28.0.0.post2
2+
- Update requires-python section so this package is only compatible with Python 3.8.
3+
14
* 28.0.0.post1
25
- Temporarily remove incompatibility with Python 3.8.
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.0.0.post1"
22+
VERSION = "28.0.0.post2"
2323

2424
# Warns that this version of the library is intended as a temporary workaround
2525
# for Python 3.8 users.

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pathlib
1818

1919

20-
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
20+
PYTHON_VERSIONS = ["3.8"]
2121
PROTOBUF_IMPLEMENTATIONS = ["python", "upb"]
2222

2323
TEST_COMMAND = [

pyproject.toml

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

1919
[project]
2020
name = "google-ads"
21-
version = "28.0.0.post1"
21+
version = "28.0.0.post2"
2222
description = "Client library for the Google Ads API"
2323
readme = "./README.rst"
24-
requires-python = ">=3.8, <3.14"
24+
requires-python = "==3.8"
2525
license = { file = "LICENSE" }
2626

2727
authors = [

0 commit comments

Comments
 (0)