From 60b78e3d98030383b36a2b78fe599b9c241ca5f7 Mon Sep 17 00:00:00 2001 From: benoitc Date: Tue, 18 Jul 2023 14:33:53 +0200 Subject: [PATCH] fix setup.cfg: use new license_files property `license_file` propert in setup.cfg is deprecated and should be replaced by the `license_files` property. fix #3027 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index b880b5d9c..c8b3a81b2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,4 +4,4 @@ testpaths = tests/ addopts = --assert=plain --cov=gunicorn --cov-report=xml [metadata] -license_file = LICENSE +license_files = ['LICENSE']