-
Notifications
You must be signed in to change notification settings - Fork 329
Support Python 3.14 in bittensor 11.0.1 #2974
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
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 |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ name = "bittensor" | |
| version = "11.0.1.dev0" | ||
|
Contributor
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. [HIGH] The 11.0.1 release still republishes an immutable core version The stable workflow builds and uploads both packages, but this branch still leaves
Contributor
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. [HIGH] The 11.0.1 release still republishes an immutable core version The release remains coupled to
Contributor
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. [HIGH] The 11.0.1 release still republishes an immutable core version The base release workflow still stamps and uploads |
||
| description = "A lean Python SDK (import bittensor) and CLI (btcli) for the Bittensor chain." | ||
| readme = "README.md" | ||
| requires-python = ">=3.10,<3.14" | ||
| requires-python = ">=3.10,<3.15" | ||
| license = { text = "Apache-2.0" } | ||
| authors = [{ name = "RaoFoundation" }] | ||
| dependencies = [ | ||
|
|
@@ -65,7 +65,7 @@ dev = [ | |
| "pytest-asyncio>=0.24", | ||
| "pytest-cov>=6.0", | ||
| "pytest-xdist>=3.6", | ||
| "hypothesis>=6.100", | ||
| "hypothesis>=6.161.0", | ||
| "ruff>=0.14", | ||
| "ty", | ||
| ] | ||
|
|
||
Large diffs are not rendered by default.
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.
[HIGH] The 11.0.1 release still republishes an immutable core version
This branch bumps only the SDK version, while the current release workflow also builds and publishes
bittensor-coreat the already-released0.1.0version. PyPI rejects re-uploading an existing filename, so the publish job cannot deliver the promisedbittensor 11.0.1. PR #2972 addresses this by bumping core to0.1.1, updating the SDK constraint, and hardening stable publication. Make #2972 a prerequisite and rebase this PR onto it, or incorporate those changes here.