-
Notifications
You must be signed in to change notification settings - Fork 6
chore(main): release polymarket-client 0.1.0-b4 #65
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: main
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 |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "0.1.0-b3" | ||
| ".": "0.1.0-b4" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build" | |
|
|
||
| [project] | ||
| name = "polymarket-client" | ||
| version = "0.1.0b3" | ||
| version = "0.1.0-b4" | ||
|
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. Dev fallback version staleMedium Severity
Reviewed by Cursor Bugbot for commit 2778c6b. Configure here. |
||
| description = "Official Python client for Polymarket" | ||
| readme = "README.md" | ||
| requires-python = ">=3.11" | ||
|
|
||


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.
Invalid PEP 440 version string breaks Python packaging
High Severity
The version changed from the valid PEP 440 format
"0.1.0b3"(no hyphen) to"0.1.0-b4"(with hyphen). The hyphenated form is not PEP 440 compliant — pre-release segments must be directly appended (e.g.,0.1.0b4). This will causehatchlingbuilds andpip installto reject or misinterpret the version, effectively breaking package distribution.Reviewed by Cursor Bugbot for commit cac293d. Configure here.