Skip to content

Commit

Permalink
Do not require pywin32 on PyPy
Browse files Browse the repository at this point in the history
  • Loading branch information
cgohlke committed May 25, 2021
1 parent cb56bbe commit 9a86b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include_package_data = True
python_requires = >=3.6
install_requires =
traitlets
pywin32>=1.0 ; sys_platform == 'win32'
pywin32>=1.0 ; sys_platform == 'win32' and platform_python_implementation != 'PyPy'

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 9a86b3c

Please sign in to comment.