Skip to content

Commit

Permalink
Add a hook for dash to collect data files required by dash v2.0 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
rokm authored and bwoodsend committed Sep 6, 2021
1 parent 8eb7f37 commit 2f2b942
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions news/314.new.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add a hook for ``dash`` to collect data files required by the new ``dash`` v2.0.
15 changes: 15 additions & 0 deletions src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ------------------------------------------------------------------
# Copyright (c) 2021 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
# ------------------------------------------------------------------

from PyInstaller.utils.hooks import collect_data_files

datas = collect_data_files('dash')

0 comments on commit 2f2b942

Please sign in to comment.