From 8eb7f37a5ae495d1a9a3eb10345557355434a6e2 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 6 Sep 2021 20:39:04 +0100 Subject: [PATCH 1/2] Scheduled weekly dependency update for week 36 (#314). * Update boto3 from 1.18.31 to 1.18.36 * Update botocore from 1.21.31 to 1.21.36 * Update dash from 1.21.0 to 2.0.0 * Update iminuit from 2.8.2 to 2.8.3 * Update office365-rest-python-client from 2.3.7 to 2.3.8 * Update platformdirs from 2.2.0 to 2.3.0 * Update plotly from 5.3.0 to 5.3.1 * Update thinc from 8.0.8 to 8.0.9 --- requirements-test-libraries.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/requirements-test-libraries.txt b/requirements-test-libraries.txt index f9b1e6bf..acfc8759 100644 --- a/requirements-test-libraries.txt +++ b/requirements-test-libraries.txt @@ -2,21 +2,21 @@ # TODO: Add most of the libraries we have hooks for, and write tests av==8.0.3 boto==2.49.0 -boto3==1.18.31 -botocore==1.21.31 +boto3==1.18.36 +botocore==1.21.36 cloudscraper==1.2.58 -dash==1.21.0 +dash==2.0.0 dash-bootstrap-components==0.13.0 dash-uploader==0.5.0 h5py==3.4.0; python_version >= '3.7' humanize==3.11.0 -iminuit==2.8.2 +iminuit==2.8.3 langdetect==1.0.9 mariadb==1.0.7; sys_platform != "darwin" markdown==3.3.4 mnemonic==0.20 msoffcrypto-tool==4.12.0 -Office365-REST-Python-Client==2.3.7 +Office365-REST-Python-Client==2.3.8 openpyxl==3.0.7 pandas==1.3.2; python_version >= '3.7' passlib==1.7.4 @@ -24,8 +24,8 @@ pendulum==2.1.2 phonenumbers==8.12.31 pingouin==0.4.0; python_version >= '3.7' pinyin==0.4.0 -platformdirs==2.2.0 -plotly==5.3.0 +platformdirs==2.3.0 +plotly==5.3.1 publicsuffix2==2.20191221 pycparser==2.20 pycryptodome==3.10.1 @@ -45,7 +45,7 @@ git+https://github.com/shotgunsoftware/python-api.git@v3.2.6 spacy==3.1.2 srsly==2.4.1 swagger-spec-validator==2.7.3 -thinc==8.0.8 +thinc==8.0.9 timezonefinder==5.2.0 Unidecode==1.2.0 web3==5.23.1 From 2f2b9424c179bed1a3eb144d3fc115b8b4fc33a2 Mon Sep 17 00:00:00 2001 From: Rok Mandeljc Date: Mon, 6 Sep 2021 22:41:39 +0200 Subject: [PATCH 2/2] Add a hook for dash to collect data files required by dash v2.0 (#314) --- news/314.new.rst | 1 + .../hooks/stdhooks/hook-dash.py | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 news/314.new.rst create mode 100644 src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py diff --git a/news/314.new.rst b/news/314.new.rst new file mode 100644 index 00000000..70ace5a2 --- /dev/null +++ b/news/314.new.rst @@ -0,0 +1 @@ +Add a hook for ``dash`` to collect data files required by the new ``dash`` v2.0. diff --git a/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py b/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py new file mode 100644 index 00000000..3e355168 --- /dev/null +++ b/src/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py @@ -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')