Skip to content

Commit e35e6c4

Browse files
authored
Merge pull request #136 from joseavegaa/patch-1
Fix #133 and support Python 3.10
2 parents 470486e + 6372492 commit e35e6c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
# if compiling using MSVC, we need to link against user32 library
1111
if platform.system() == 'Windows':
12-
libraries = ('user32',)
12+
libraries = ['user32',]
1313
else:
14-
libraries = ()
14+
libraries = []
1515

1616
if __name__ == '__main__':
1717
with \

0 commit comments

Comments
 (0)