-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v8_1_0 including Python 3.6 support (#353)
* Release v8_1_0 including Python 3.6 support
- Loading branch information
Showing
11 changed files
with
8,027 additions
and
7,902 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ Build Status | |
|
||
Requirements | ||
------------ | ||
* Python 3.7+ | ||
* Python 3.6+ | ||
|
||
Installation | ||
------------ | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 = [ | ||
|
@@ -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=[ | ||
|
@@ -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, | ||
|