Skip to content
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

Fix package name mapping in setup.py #514

Merged
merged 1 commit into from
May 7, 2024
Merged

Fix package name mapping in setup.py #514

merged 1 commit into from
May 7, 2024

Conversation

dmchoiboi
Copy link
Collaborator

@dmchoiboi dmchoiboi commented May 7, 2024

Pull Request Summary

What is this PR changing? Why is this change being made? Any caveats you'd like to highlight? Link any relevant documents, links, or screenshots here if applicable.

#513 has the wrong name for the python module in setup.py

Test Plan and Usage Guide

Published change and mypy doesn't complain anymore
Screenshot 2024-05-07 at 11 31 27 AM

How did you validate that your PR works correctly? How do you run or demo the code? Provide enough detail so a reviewer can reasonably reproduce the testing procedure. Paste example command line invocations if applicable.

@dmchoiboi dmchoiboi requested review from saiatmakuri and a team May 7, 2024 17:59
@@ -5,5 +5,5 @@
python_requires=">=3.7",
version="0.0.0.beta32",
packages=find_packages(),
package_data={"scale_llm_engine": ["py.typed"]},
package_data={"llmengine": ["py.typed"]},
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just to sanity check (maybe I'm misunderstanding the change here), are you proposing we change the pypi package name from scale-llm-engine -> llm-engine?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no, the module name is already llmengine

e.g. current usage is

from llmengine import Completion

I had provided an incorrect module name before

@dmchoiboi dmchoiboi merged commit 1106435 into main May 7, 2024
5 checks passed
@dmchoiboi dmchoiboi deleted the dmchoi/fix-setuppy branch May 7, 2024 18:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants