Skip to content

Commit

Permalink
Py2Exe: still depend upon win32con as several add-ons use it.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelDCurran committed May 31, 2019
1 parent c4569d6 commit a78c4a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,10 @@ def getRecursiveDataFiles(dest,source,excludes=()):
"nvdaBuiltin",
# #3368: bisect was implicitly included with Python 2.7.3, but isn't with 2.7.5.
"bisect",
# Also, the previous service executable used win32api, which some add-ons use for various purposes.
# Also, previously NVDA core depended upon win32con and win32api.
# Ensure these are still available for add-ons.
"win32api",
"win32con",
# #8628: include an import module for validate, which older add-ons import directly.
# Since configobj 5.1.0, validate is a part of the configobj package
# and should be imported as configobj.validate instead
Expand Down

0 comments on commit a78c4a4

Please sign in to comment.