Skip to content

Commit 4ea7412

Browse files
authored
Merge pull request #590 from coox/main
Fix missing dependency on `packaging`
2 parents 1fcbb17 + 21d5ab6 commit 4ea7412

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)