PEP 639 deprecates the `License` field in favor of the more precise `License-Expression`. This updates the metadata accordingly.
https://peps.python.org/pep-0639/#deprecate-license-field Signed-off-by: Timothy Redaelli <[email protected]> --- python/setup.py.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py.template b/python/setup.py.template index e28d5d397..0a7849b4e 100644 --- a/python/setup.py.template +++ b/python/setup.py.template @@ -97,7 +97,7 @@ setup_args = dict( 'Topic :: Database :: Front-Ends', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking', - 'License :: OSI Approved :: Apache Software License', + 'License-Expression :: Apache 2.0', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.7', ], -- 2.51.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
