Skip to content

Commit

Permalink
build: add pyinstaller hook for afmformats
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 16, 2020
1 parent a98fc2f commit 44c7ec6
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .appveyor/hook-afmformats.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# ------------------------------------------------------------------
# Copyright (c) 2020 PyInstaller Development Team.
#
# This file is distributed under the terms of the GNU General Public
# License (version 2.0 or later).
#
# The full license is available in LICENSE.GPL.txt, distributed with
# this software.
#
# SPDX-License-Identifier: GPL-2.0-or-later
# ------------------------------------------------------------------

# Hook for afmformats: https://pypi.python.org/pypi/afmformats

from PyInstaller.utils.hooks import collect_data_files

datas = collect_data_files('afmformats')
17 changes: 17 additions & 0 deletions .travis/hook-afmformats.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# ------------------------------------------------------------------
# Copyright (c) 2020 PyInstaller Development Team.
#
# This file is distributed under the terms of the GNU General Public
# License (version 2.0 or later).
#
# The full license is available in LICENSE.GPL.txt, distributed with
# this software.
#
# SPDX-License-Identifier: GPL-2.0-or-later
# ------------------------------------------------------------------

# Hook for afmformats: https://pypi.python.org/pypi/afmformats

from PyInstaller.utils.hooks import collect_data_files

datas = collect_data_files('afmformats')
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.8.4
- build: add pyinstaller hooks for afmformats
0.8.3
- fix: main window not focused after startup
- fix: Windows installation location was confusing and did
Expand Down

0 comments on commit 44c7ec6

Please sign in to comment.