Skip to content

Commit 8943190

Browse files
committed
Update to better reflect change from PR 511.
1 parent b03eb1a commit 8943190

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
34.0.0 -- 10/17/2022
2+
* Updated setup.py to support the latest 6.x PyYaml version.
3+
14
33.0.0 -- 08/16/2022
25
* Added support for Ad Manager v202208.
36
* Removed support for Ad Manager v202108.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ code to help you get started integrating with our APIs.
2727

2828
`$ python setup.py build install`
2929

30-
1. Copy the [googleads.yaml](https://github.com/googleads/googleads-python-lib/blob/master/googleads.yaml)
30+
1. Copy the [googleads.yaml](https://github.com/googleads/googleads-python-lib/blob/main/googleads.yaml)
3131
file to your home directory.
3232

3333
This will be used to store credentials and other settings that can be loaded
@@ -53,8 +53,8 @@ code to help you get started integrating with our APIs.
5353
You can find code examples for the latest versions of AdWords or Ad Manager on the
5454
[releases](https://github.com/googleads/googleads-python-lib/releases) page.
5555

56-
Alternatively, you can find [AdWords](https://github.com/googleads/googleads-python-lib/tree/master/examples/adwords)
57-
or [Ad Manager](https://github.com/googleads/googleads-python-lib/tree/master/examples/ad_manager)
56+
Alternatively, you can find [AdWords](https://github.com/googleads/googleads-python-lib/tree/main/examples/adwords)
57+
or [Ad Manager](https://github.com/googleads/googleads-python-lib/tree/main/examples/ad_manager)
5858
samples in the examples directory of this repository.
5959

6060
#### Where can I find the pydocs?
@@ -101,7 +101,7 @@ If you have issues pertaining to a specific API, use the product support forums:
101101

102102
## How do I log SOAP interactions?
103103
The library uses Python's built in logging framework. You can specify your
104-
configuration via the configuration file; see [googleads.yaml](https://github.com/googleads/googleads-python-lib/blob/master/googleads.yaml)
104+
configuration via the configuration file; see [googleads.yaml](https://github.com/googleads/googleads-python-lib/blob/main/googleads.yaml)
105105
for an example.
106106

107107
Alternatively, you can manually specify your logging configuration. For example,

googleads/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
'order to benefit from important security improvements and ensure '
5555
'compatibility with this library, upgrade to Python 3.6 or higher.')
5656

57-
VERSION = '33.0.0'
57+
VERSION = '34.0.0'
5858
_COMMON_LIB_SIG = 'googleads/%s' % VERSION
5959
_LOGGING_KEY = 'logging'
6060
_HTTP_PROXY_YAML_KEY = 'http'

tests/adwords_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ def setUp(self):
13301330
'version: %s}\n' % self.version)
13311331

13321332
def testDump(self):
1333-
expected = yaml.load(self.incremental_uploader_dump)
1333+
expected = yaml.safe_load(self.incremental_uploader_dump)
13341334

13351335
with tempfile.NamedTemporaryFile(delete=False, mode='w') as t:
13361336
name = t.name

0 commit comments

Comments
 (0)