Skip to content

Commit

Permalink
Release v8_1_0 including Python 3.6 support (#353)
Browse files Browse the repository at this point in the history
* Release v8_1_0 including Python 3.6 support
  • Loading branch information
wihl authored Dec 11, 2020
1 parent ccf5016 commit 13f228d
Show file tree
Hide file tree
Showing 11 changed files with 8,027 additions and 7,902 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 8.1.0
- Added support for Python 3.6 via PEP562 (Thanks @infectious!)

* 8.0.0
- Google Ads v6_0 release
- Deprecate v2_0
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Build Status

Requirements
------------
* Python 3.7+
* Python 3.6+

Installation
------------
Expand Down
491 changes: 252 additions & 239 deletions google/ads/google_ads/v3/__init__.py

Large diffs are not rendered by default.

3,327 changes: 1,672 additions & 1,655 deletions google/ads/google_ads/v3/types.py

Large diffs are not rendered by default.

503 changes: 258 additions & 245 deletions google/ads/google_ads/v4/__init__.py

Large diffs are not rendered by default.

3,413 changes: 1,715 additions & 1,698 deletions google/ads/google_ads/v4/types.py

Large diffs are not rendered by default.

507 changes: 260 additions & 247 deletions google/ads/google_ads/v5/__init__.py

Large diffs are not rendered by default.

3,475 changes: 1,746 additions & 1,729 deletions google/ads/google_ads/v5/types.py

Large diffs are not rendered by default.

527 changes: 270 additions & 257 deletions google/ads/google_ads/v6/__init__.py

Large diffs are not rendered by default.

3,673 changes: 1,845 additions & 1,828 deletions google/ads/google_ads/v6/types.py

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"protobuf >= 3.13.0, < 4.0.0",
"PyYAML >= 5.1, < 6.0",
"setuptools>=40.3.0",
"pep562 >= 1.0, < 2.0",
]

tests_require = [
Expand All @@ -34,9 +35,10 @@
with io.open("README.rst", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()


setup(
name="google-ads",
version="8.0.0",
version="8.1.0",
author="Google LLC",
author_email="[email protected]",
classifiers=[
Expand All @@ -46,11 +48,11 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
],
description="Client library for the Google Ads API",
include_package_data=True,
python_requires=">=3.7",
python_requires=">=3.6",
long_description=long_description,
install_requires=install_requires,
tests_require=tests_require,
Expand Down

0 comments on commit 13f228d

Please sign in to comment.