Skip to content

Commit

Permalink
[gaarf-py] Bump to 1.14.1
Browse files Browse the repository at this point in the history
* Add support for Google Ads API v17
* Provide correct library for smart_open[gcs]
* Add simplified import for `AdsReportFetcher`

Change-Id: I6c453b4c4de0d8a565862aa9bd3c7f26a8938eb7
  • Loading branch information
AVMarkin committed Jun 11, 2024
1 parent 2e09772 commit c8362b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions py/gaarf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@

from gaarf.api_clients import GoogleAdsApiClient
from gaarf.report import GaarfReport
from gaarf.report_fetcher import AdsReportFetcher

__all__ = [
'GaarfReport',
'GoogleAdsApiClient',
'AdsReportFetcher',
]
6 changes: 3 additions & 3 deletions py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
'bq': [
'google-cloud-bigquery',
'pandas>=1.3.4',
'smart_open[gcp]',
'smart_open[gcs]',
],
}
EXTRAS_REQUIRE['full'] = list(set(itertools.chain(*EXTRAS_REQUIRE.values())))

setuptools.setup(
name='google-ads-api-report-fetcher',
version='1.14.0',
version='1.14.1',
python_requires='>3.8',
description=(
'Library for fetching reports from Google Ads API '
Expand All @@ -73,7 +73,7 @@
],
packages=setuptools.find_packages(),
install_requires=[
'google-ads>=24.0.0',
'google-ads>=24.1.0',
'smart_open',
'jinja2',
'python-dateutil',
Expand Down

0 comments on commit c8362b1

Please sign in to comment.