-
Notifications
You must be signed in to change notification settings - Fork 20
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
server: enable pyrp3 dependency for all platforms #417
Conversation
No other machines should really use the server, and this dependency doesn't hurt any other platform that is used to test the server. This also helps a bit installing the server in an offline manner (linien-org#378), see also: jazzband/pip-tools#1220
The restriction for pyrp3 is required for installing |
But @bleykauf I don't understand - you can run |
The issue is that
|
OK I see, I also understand that when wishing to install
Given that python -m pip download \
--no-deps \
/path/to/linien-repo/linien-server \
--requirement <(python -m piptools compile \
/path/to/linien-repo/linien-server/pyproject.toml \
--output-file - 2>/dev/null | sed \
-e 's/^\(pyrp3==2.0.1\)/#\0 is not available on for Windows.../g' \
) |
No other machines should really use the server, and this dependency doesn't hurt any other platform that is used to test the server. This also helps a bit installing the server in an offline manner (#378), see also:
jazzband/pip-tools#1220