Skip to content

Commit dac48df

Browse files
authored
Fix python deprecation warning. (#1018)
It's related to specifying the glob patterns for the file with the license text.
1 parent 1618780 commit dac48df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/python_binding/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
include_package_data=True,
2323
install_requires=["cffi>=1.15.1"],
2424
license="Apache 2.0",
25-
license_files=('LICENSE'),
25+
license_files=['LICENSE'],
2626
long_description_content_type="text/markdown",
2727
long_description="This Python package provides a Pythonic interface to libktx. It uses CFFI to generate the C bindings.",
2828
packages=['pyktx'],

0 commit comments

Comments
 (0)