File tree Expand file tree Collapse file tree 5 files changed +21
-6
lines changed
Expand file tree Collapse file tree 5 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ trigger:
1010variables :
1111 AZURE : True
1212 CODECOV_TOKEN : " 53ed8bd6-fe08-4b52-a76d-733bf67bc574"
13- CDPREP_OUTPUT_DIRNAME : ' cdprep_0.1.2_win_amd64 '
13+ CDPREP_OUTPUT_DIRNAME : ' cdprep_0.2.0_win_amd64 '
1414
1515pool :
1616 vmImage : ' windows-2019'
Original file line number Diff line number Diff line change 5252import sys
5353
5454
55- version_info = (0 , 1 , 2 )
55+ version_info = (0 , 2 , 0 )
5656__version__ = '.' .join (map (str , version_info ))
5757__appname__ = 'Climate Data Preprocessing Tool'
5858__namever__ = __appname__ + " " + __version__
59- __date__ = '06/ 11/2020 '
59+ __date__ = '11/06/2021 '
6060__project_url__ = "https://github.com/cgq-qgc/climate-data-preprocessing-tool"
6161__releases_url__ = __project_url__ + "/releases"
6262__releases_api__ = "https://api.github.com/repos/cgq-qgc/climate-data-preprocessing-tool/releases"
Original file line number Diff line number Diff line change @@ -7,15 +7,18 @@ from cdprep.utils.ospath import delete_folder_recursively
77
88block_cipher = None
99
10- added_files = [('../cdprep/ressources/icons/*.png' , 'ressources/icons' ),
11- ('../cdprep/ressources/icons/*.svg' , 'ressources/icons' )]
10+ added_files = [
11+ ('../cdprep/ressources/icons/*.png' , 'ressources/icons' ),
12+ ('../cdprep/ressources/icons/*.svg' , 'ressources/icons' ),
13+ ('../cdprep/ressources/Station Inventory EN.csv' , 'ressources/Station Inventory EN.csv' )
14+ ]
1215a = Analysis (['../cdprep/app/mainwindow.py' ],
1316 pathex = ['C:\\ Program Files (x86)\\ Windows Kits\\ 10\\ Redist\\ ucrt\\ DLLs\\ x64' ],
1417 binaries = [('C:\\ Windows\\ System32\\ vcruntime140_1.dll' , '.' )],
1518 datas = added_files ,
1619 hiddenimports = [
1720 'win32timezone' , 'pkg_resources.py2_warn' ],
18- hookspath = [],
21+ hookspath = ['hooks' ],
1922 runtime_hooks = [],
2023 excludes = ['PySide' , 'PyQt4' ],
2124 win_no_prefer_redirects = False ,
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+ # -----------------------------------------------------------------------------
3+ # Copyright © Climate Data Preprocessing Tool Project Contributors
4+ # https://github.com/cgq-qgc/climate-data-preprocessing-tool
5+ #
6+ # This file is part of Climate Data Preprocessing Tool.
7+ # Licensed under the terms of the GNU General Public License.
8+ # -----------------------------------------------------------------------------
9+
10+ from PyInstaller .utils .hooks import collect_all
11+ datas , binaries , hiddenimports = collect_all ('gdown' )
Original file line number Diff line number Diff line change 1+ wheel
12flaky
23codecov
34pytest
You can’t perform that action at this time.
0 commit comments