zilto commented on PR #1376: URL: https://github.com/apache/hamilton/pull/1376#issuecomment-3263885465
@pjfanning I have little experience with pypi, but I want to highlight that we have multiple options for distribution: - pip allows you to install from github `pip install git+https://github.com/apache/hamilton.git` - `@` allows to specify tag or brancehs. We could have `pip install git+https://github.com/apache/hamilton.git@core` - you can also specify subpaths. We could have `pip install git+https://github.com/apache/hamilton.git#subdirectory=hamilton-core` - the GitHub release workflow could include `core` versions in the release `Assets` Actually, you can even try `hamilton-core` right now from this PR via ``` pip install git+https://github.com/apache/hamilton.git@feat/hamilton-core#subdirectory=hamilton-core ``` I believe "hamilton-core" PR is a temporary solution to something we should fix on a major release. Users that care about this issue (already a few reacted positively on Slack) are probably ok with following a few extra steps for installation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
