Skip to content

Commit

Permalink
Merge pull request #136 from joseavegaa/patch-1
Browse files Browse the repository at this point in the history
Fix #133 and support Python 3.10
  • Loading branch information
danni authored Aug 16, 2022
2 parents 470486e + 6372492 commit e35e6c4
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 @@ -9,9 +9,9 @@

# if compiling using MSVC, we need to link against user32 library
if platform.system() == 'Windows':
libraries = ('user32',)
libraries = ['user32',]
else:
libraries = ()
libraries = []

if __name__ == '__main__':
with \
Expand Down

0 comments on commit e35e6c4

Please sign in to comment.