-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
curses not available on windows #1100
Comments
It seems to me that the curses library is used in three lines of code only, using two functions: Line 89 in 6ca0d18
Line 234 in 6ca0d18
(introduced in commit 7d062b5 ). Given that this currently blocks the windows build of circus on conda-forge, it would be great to understand whether this is really necessary or whether Mentioning @tarekziade for comment (and @sphuber for info) Edit: Fixed commit hash |
There are some wheels based on PDCurses to support |
Thansk @nuno-andre So, I guess the idea would be to
Is it possible to create a conda-forge feedstock from a python wheel or does the wheel need to be built by conda? |
It think the best option would be to go with install_requires = [
'psutil',
'pyzmq>=17.0',
'tornado>=3.0,<5.0',
'six',
'windows-curses>=2.10;platform_system=="Windows"',
] This way both It may also be worth merging #1065 to get better Windows support. |
As noticed in the circus feedstock on conda-forge, circus uses
curses
but it seemscurses
doesn't work on windows (?).In this issue, it was mentioned that circus supports windows since version 0.12, so it seems like we are missing something.
How should we build the
circus
conda package for windows?possible workarounds
Mentioning also the recipe maintainer @carlodri
The text was updated successfully, but these errors were encountered: