-
Notifications
You must be signed in to change notification settings - Fork 2.2k
fix: updates pydeck pyproject.toml to include dynamic field #10048
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ | |
| name = "pydeck" | ||
| version = "0.9.1" | ||
| requires-python = ">=3.8" | ||
| dynamic = ["readme", "license", "authors", "keywords", "classifiers", "dependencies", "optional-dependencies"] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing
|
||
|
|
||
| [build-system] | ||
| requires = [ | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing
descriptionindynamicfield listMedium Severity
The
dynamiclist is missing"description", even thoughsetup.pydefinesdescription="Widget for deck.gl maps". Sincedescriptionis neither statically declared in[project]nor listed indynamic, modern setuptools will silently ignore it — the exact same class of bug this PR aims to fix forreadme. The package metadata will have no description.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Lanceypantsy could you decide if this should be addressed?