Should PyPI kick my project off because it don't support MS Windows?
My package uses C and Cython extensions. While I support macOS and Linux-based OSes, I don't know how to develop on or support MS Windows.
I've tried to be careful about the ILP32 vs LP64 differences, but I suspect there's going to be many places where I missed up.
I also use "/dev/stdin" to work-around my use of a third-party library that has no way to read from stdin. As far as I can tell, there's no equivalent in Windows, so I'll have to raise an exception for that case, and modify my tests cases.
My package uses C and Cython extensions. While I support macOS and Linux-based OSes, I don't know how to develop on or support MS Windows.
I've tried to be careful about the ILP32 vs LP64 differences, but I suspect there's going to be many places where I missed up.
I also use "/dev/stdin" to work-around my use of a third-party library that has no way to read from stdin. As far as I can tell, there's no equivalent in Windows, so I'll have to raise an exception for that case, and modify my tests cases.