From 72a16f772d251b2f27186ad35cb39b031ad6face Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Mon, 22 Aug 2022 09:52:21 -0400 Subject: [PATCH] Remove `zip_safe` from install.rst documentation `zip_safe` is obsolete per: https://setuptools.pypa.io/en/latest/deprecated/zip_safe.html In summary: > It is very unlikely that the values of zip_safe will affect modern deployments that use pip for installing packages. Moreover, new users of setuptools should not attempt to create egg files using the deprecated build_egg command. Therefore, this flag is considered obsolete. --- docs/tutorial/install.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/tutorial/install.rst b/docs/tutorial/install.rst index 7380b302..f6820ebd 100644 --- a/docs/tutorial/install.rst +++ b/docs/tutorial/install.rst @@ -41,7 +41,6 @@ to it. version='1.0.0', packages=find_packages(), include_package_data=True, - zip_safe=False, install_requires=[ 'flask', ],