Skip to content

Commit

Permalink
adding .pyd extension for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbynum committed Apr 19, 2019
1 parent 0264007 commit 8ace993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyomo/common/fileutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def find_dir(dirname, cwd=True, mode=os.R_OK, pathlist=[],

_libExt = {
'linux': ('.so', '.so.*'),
'windows': ('.dll',),
'windows': ('.dll', '.pyd'),
'cygwin': ('.dll', '.so', '.so.*'),
'darwin': ('.dylib', '.so', '.so.*'),
}
Expand Down

0 comments on commit 8ace993

Please sign in to comment.