From 4a1479f0466109404a41ab59dddf2e0d70f5be96 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 23 May 2023 20:10:05 +0200 Subject: [PATCH] address warning in githup action Installing 'pyLSV2.locales.en.LC_MESSAGES' as data is deprecated, please list it in `packages`. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c33112f..7e61f1e 100644 --- a/setup.py +++ b/setup.py @@ -6,14 +6,14 @@ setup( name="pyLSV2", - python_requires=">=3.5", + python_requires=">=3.6", packages=find_packages( include=[ "pyLSV2", ], exclude=["tests", "data"], ), - package_data={"pyLSV2": ["locales/*/LC_MESSAGES/*.mo"]}, + #package_data={"pyLSV2": ["locales/*/LC_MESSAGES/*.mo"]}, include_package_data=True, version=__version__, description=__doc__,