-
Notifications
You must be signed in to change notification settings - Fork 285
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
Split non-ML part into a new talon-core package #200
base: master
Are you sure you want to change the base?
Conversation
Can one of the admins verify this patch? |
9140900
to
3ed431d
Compare
This is fantastic. Using the fork, but LGTM. |
Have this would be amazing. Any progress on merging this? |
mailgun/talon#200 Signed-off-by: Anders Kaseorg <[email protected]>
mailgun/talon#200 Signed-off-by: Anders Kaseorg <[email protected]>
@horkhe Can you please comment on whether this approach is acceptable for upstream? Zulip has been stuck on our fork of Talon for six years due to this issue and we would very much like to unfork it. If this is acceptable, I’m happy to respin this for the current version. |
Signed-off-by: Anders Kaseorg <[email protected]>
The nonstandard `setup.py install --no-ml` option didn’t work correctly with pip. We could move the ML dependencies into an extra, but that approach was previously rejected (mailgun#121): extras can’t be enabled by default, so it could have been disruptive to existing users. Instead, we split off a new talon-core package with no ML dependencies, and have talon re-export everything from it. Fixes mailgun#130; fixes mailgun#131. Signed-off-by: Anders Kaseorg <[email protected]>
3ed431d
to
137ea31
Compare
The nonstandard
setup.py install --no-ml
option didn’t work correctly with pip. We could move the ML dependencies into an extra, but that approach was previously rejected (#121): extras can’t be enabled by default, so it could have been disruptive to existing users. Instead, we split off a new talon-core package with no ML dependencies, and have talon re-export everything from it.Fixes #130; fixes #131.