From 38c93f26e840ef624af84beaeb590e7638a518ef Mon Sep 17 00:00:00 2001 From: Kevin Gartland <41300090+kgartland-rstudio@users.noreply.github.com> Date: Mon, 18 Sep 2023 13:43:44 -0400 Subject: [PATCH] Use license_files in setup.cfg Seeing warnings in test runs stating that license_file will be deprecation next month: ``` integration-testing-client-1 | The license_file parameter is deprecated, use license_files instead. integration-testing-client-1 | integration-testing-client-1 | By 2023-Oct-30, you need to update your project and remove deprecated calls integration-testing-client-1 | or your builds will no longer be supported. integration-testing-client-1 | integration-testing-client-1 | See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. integration-testing-client-1 | ``` updating to use `license_files` instead. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 4896c47f..eae9e885 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ author = Michael Marchetti author_email = mike@posit.co description = Python integration with Posit Connect license = GPL-2.0 -license_file = LICENSE.md +license_files = LICENSE.md long_description = file:README.md long_description_content_type = text/markdown name = rsconnect_python