Skip to content

Commit 44c7ec6

Browse files
committed
build: add pyinstaller hook for afmformats
1 parent a98fc2f commit 44c7ec6

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.appveyor/hook-afmformats.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# ------------------------------------------------------------------
2+
# Copyright (c) 2020 PyInstaller Development Team.
3+
#
4+
# This file is distributed under the terms of the GNU General Public
5+
# License (version 2.0 or later).
6+
#
7+
# The full license is available in LICENSE.GPL.txt, distributed with
8+
# this software.
9+
#
10+
# SPDX-License-Identifier: GPL-2.0-or-later
11+
# ------------------------------------------------------------------
12+
13+
# Hook for afmformats: https://pypi.python.org/pypi/afmformats
14+
15+
from PyInstaller.utils.hooks import collect_data_files
16+
17+
datas = collect_data_files('afmformats')

.travis/hook-afmformats.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# ------------------------------------------------------------------
2+
# Copyright (c) 2020 PyInstaller Development Team.
3+
#
4+
# This file is distributed under the terms of the GNU General Public
5+
# License (version 2.0 or later).
6+
#
7+
# The full license is available in LICENSE.GPL.txt, distributed with
8+
# this software.
9+
#
10+
# SPDX-License-Identifier: GPL-2.0-or-later
11+
# ------------------------------------------------------------------
12+
13+
# Hook for afmformats: https://pypi.python.org/pypi/afmformats
14+
15+
from PyInstaller.utils.hooks import collect_data_files
16+
17+
datas = collect_data_files('afmformats')

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.8.4
2+
- build: add pyinstaller hooks for afmformats
13
0.8.3
24
- fix: main window not focused after startup
35
- fix: Windows installation location was confusing and did

0 commit comments

Comments
 (0)