Skip to content

Commit b49101c

Browse files
authored
Only install dataclasses module when < Python 3.7 (#438)
1 parent 64cc6e3 commit b49101c

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+
* 11.0.2
2+
- Update dataclasses dependency so it's only installed when using Python < 3.7
3+
14
* 11.0.1
25
- Fix bug breaking Python 3.6 compatibility.
36
- Update unit test framework to Nox and add test coverage.

google/ads/googleads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
import google.ads.googleads.util
1919

2020

21-
VERSION = "11.0.1"
21+
VERSION = "11.0.2"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import io
1818

1919
install_requires = [
20-
"dataclasses >= 0.6, < 1.0.0",
20+
"dataclasses >= 0.6, < 1.0.0; python_version < '3.7'",
2121
"google-auth-oauthlib >= 0.3.0, < 1.0.0",
2222
"google-api-core >= 1.21.0, < 2.0.0",
2323
"googleapis-common-protos >= 1.5.8, < 2.0.0",
@@ -35,7 +35,7 @@
3535

3636
setup(
3737
name="google-ads",
38-
version="11.0.1",
38+
version="11.0.2",
3939
author="Google LLC",
4040
author_email="[email protected]",
4141
classifiers=[

0 commit comments

Comments
 (0)