From 9311a823a7155b8f6377bbd22cf783a182011d54 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Mon, 2 Mar 2020 10:21:15 -0800 Subject: [PATCH] Remove deprecated `license_file` option Starting with wheel 0.32.0 (2018-09-29), the `license_file` option is deprecated in favor of `license_files`. https://wheel.readthedocs.io/en/stable/news.html The wheel will continue to include `LICENSE`, it is now included automatically: https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file See https://github.com/FactoryBoy/factory_boy/pull/696 for inspiration and more discussion. --- setup.cfg | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index dfac8b07..84d193e2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,3 @@ -[metadata] -license_file = LICENSE.rst - [bdist_wheel] universal = true