2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

Update Python package requirements

The Python ovs package relies on pywin32 for Windows support.
For this reason, pywin32 should be included in the requirements
list.

Signed-off-by: Lucian Petrut <lpetrut@cloudbasesolutions.com>
This commit is contained in:
Lucian Petrut
2019-02-22 15:24:23 +02:00
parent 0af63ac5ec
commit 00fcc832d5

View File

@@ -82,7 +82,8 @@ setup_args = dict(
ext_modules=[setuptools.Extension("ovs._json", sources=["ovs/_json.c"],
libraries=['openvswitch'])],
cmdclass={'build_ext': try_build_ext},
install_requires=['sortedcontainers'],
install_requires=['sortedcontainers',
'pywin32>=1.0;platform_system=="Windows"'],
)
try: