File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 3.0.0 (2019-04-13)
4
+
5
+ - Change MARA_XXX variables to functions to delay importing of imports
6
+
7
+ ** required changes**
8
+
9
+ - If used together with a mara project, Update ` mara-app ` to ` >=2.0.0 `
10
+
11
+
3
12
## 2.1.0
4
13
* 2019-01-23*
5
14
Original file line number Diff line number Diff line change 1
- from google_ads_downloader import config , cli
2
1
3
- MARA_CONFIG_MODULES = [config ]
2
+ def MARA_CONFIG_MODULES ():
3
+ from . import config , cli
4
+ return [config ]
4
5
5
- MARA_CLICK_COMMANDS = [cli .download_data , cli .refresh_oauth2_token ]
6
+ def MARA_CLICK_COMMANDS ():
7
+ from . import config , cli
8
+ return [cli .download_data , cli .refresh_oauth2_token ]
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'google-ads-performance-downloader' ,
5
- version = '2.1 .0' ,
5
+ version = '3.0 .0' ,
6
6
description = "Downloads data from the Google Adwords Api to local files" ,
7
7
8
8
install_requires = [
You can’t perform that action at this time.
0 commit comments