Skip to content

Commit 59aaf21

Browse files
Merge pull request #27 from cgq-qgc/release_0.2.0
PR: Release version 0.2.0
2 parents 910f2ce + dbf2e3e commit 59aaf21

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ trigger:
1010
variables:
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

1515
pool:
1616
vmImage: 'windows-2019'

cdprep/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
import 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"

releases/cdprep.spec

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,18 @@ from cdprep.utils.ospath import delete_folder_recursively
77

88
block_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+
]
1215
a = 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,

releases/hooks/hook-gdown.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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')

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
wheel
12
flaky
23
codecov
34
pytest

0 commit comments

Comments
 (0)