-
Notifications
You must be signed in to change notification settings - Fork 122
Open
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
Problem
Several packaging issues prevent clean installation:
redis_om/package not included in wheel - The sync version of the library is missing from built wheelsdocs/andimages/incorrectly in wheel - Non-code files are being installed to site-packagespython-ulidpinned too restrictively - Version constraint^1.0.3is outdated (v3 released in 2024)
Current State
packages = [
{ "include" = "aredis_om" },
]
include=[
"docs/*",
"images/*",
"redis_om/**/*",
]Solution
Update pyproject.toml:
packages = [
{ "include" = "aredis_om" },
{ "include" = "redis_om" },
]
# Remove docs and images from include, or use exclude for wheelUpdate dependency:
python-ulid = ">=1.0.3,<4.0.0"Related
- Packaging issues #713 (original user report)
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working