Skip to content

Commit

Permalink
Merge pull request #274 from rockywhisper/setup_fix
Browse files Browse the repository at this point in the history
replace get_config_var()  with get_config_vars() in setup.py.
  • Loading branch information
skvark committed Dec 30, 2019
2 parents 4352c62 + 22c900d commit ac48881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -67,7 +67,7 @@ def main():

package_data = {
'cv2':
['*%s' % sysconfig.get_config_var('SO')] +
['*%s' % sysconfig.get_config_vars().get('SO')] +
(['*.dll'] if os.name == 'nt' else []) +
["LICENSE.txt", "LICENSE-3RD-PARTY.txt"],
'cv2.data':
Expand Down

0 comments on commit ac48881

Please sign in to comment.