Skip to content

Commit 21d5ab6

Browse files
committed
Fix missing dependency on packaging
This package has been required since deprecation of `distutils`
1 parent 78f9bf3 commit 21d5ab6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,8 @@ def run(self):
5353
"pymysqlreplication.util",
5454
],
5555
cmdclass={"test": TestCommand},
56-
install_requires=["pymysql>=1.1.0"],
56+
install_requires=[
57+
"packaging",
58+
"pymysql>=1.1.0",
59+
],
5760
)

0 commit comments

Comments
 (0)