WojciechMula / pyahocorasick

Python module (C extension and plain python) implementing Aho-Corasick algorithm
BSD 3-Clause "New" or "Revised" License
948 stars 125 forks source link

AppVeyor build for py3 fails #55

Closed WojciechMula closed 6 years ago

WojciechMula commented 7 years ago

The current config doesn't set up the environment properly and setuptools fails:

raise ValueError(str(list(result.keys())))
    ValueError: ['path']

Here are two alternative ways:

JB-MS commented 7 years ago

The second link helped me out, indeed! Thanks! Only problem is, that i installed a lot of stuff (a whole bunch of MS Visual C++ stuff including patches etc...) before and i don't know which is now required to make this work. Cloning the package, installing wheel and using 'Windows SDK Command Prompt' resulted in a working install on Windows 7 64bit.

Still, it would be great if the installation with pip would work again, since we install all dependencies via a requirements.txt, which at the moment fails under Windows 7 and 10.

Cheers, Johannes

WojciechMula commented 7 years ago

@JB-MS When we split repositories, I hope to sort it out. But I'll need help with Win 10, I don't have access to machine that has this system.

JB-MS commented 7 years ago

@WojciechMula At the moment, i also do not have access to Win 10. But i will try to help.

WojciechMula commented 6 years ago

It was finally fixed by @ei-grad. Thank you!