Skip to content

Commit

Permalink
address warning in githup action
Browse files Browse the repository at this point in the history
Installing 'pyLSV2.locales.en.LC_MESSAGES' as data is deprecated, please list it in `packages`.
  • Loading branch information
drunsinn committed May 23, 2023
1 parent 0b33555 commit 4a1479f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__,
Expand Down

0 comments on commit 4a1479f

Please sign in to comment.