forked from benfred/py-spy
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Updates... #9
Open
zanieb
wants to merge
18
commits into
master
Choose a base branch
from
zb/cargo-update
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Updates... #9
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zanieb
force-pushed
the
zb/cargo-update
branch
from
October 9, 2024 02:55
b7edcab
to
7b7772c
Compare
zanieb
force-pushed
the
zb/cargo-update
branch
from
October 9, 2024 17:18
8c6f886
to
4f288c1
Compare
Rather than test every patch version of python, only test the first/last patch for older python versions - while still testing all patch versions for python 3.10+.
Commit 5820bf6 removes field `addr` and `size` from BinaryInfo, which are used when feature `unwind` is enabled. So recover these two fields. Fix building error: cargo build --all-features error[E0609]: no field `addr` on type `&BinaryInfo` --> src/binary_parser.rs:18:22 | 18 | addr >= self.addr && addr < (self.addr + self.size) | ^^^^ unknown field | = note: available fields are: `symbols`, `bss_addr`, `bss_size` error[E0609]: no field `addr` on type `&BinaryInfo` --> src/binary_parser.rs:18:43 | 18 | addr >= self.addr && addr < (self.addr + self.size) | ^^^^ unknown field | = note: available fields are: `symbols`, `bss_addr`, `bss_size` error[E0609]: no field `size` on type `&BinaryInfo` --> src/binary_parser.rs:18:55 | 18 | addr >= self.addr && addr < (self.addr + self.size) | ^^^^ unknown field | = note: available fields are: `symbols`, `bss_addr`, `bss_size` Signed-off-by: Jiang Liu <[email protected]>
Remove duplicated strings in ignore_frame()::ignorable[]. Signed-off-by: Jiang Liu <[email protected]>
…#699) * Upgrade `remoteprocess` * Upgrade `libproc`
zanieb
force-pushed
the
zb/cargo-update
branch
from
October 16, 2024 17:10
017f354
to
132fc3b
Compare
update_python_test_versions.py needed update to handle python 3.12, and to match recent yaml format changes.
Uses `cargo update` to update all dependencies
zanieb
force-pushed
the
zb/cargo-update
branch
from
October 16, 2024 18:35
132fc3b
to
27a80ce
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
857024a closes benfred#596 (and upgrades other packages, might need to be reduced)
045846a and 224a783 replace benfred#679
eb2ee1b and 7b7772c resolve remaining warnings on macOS
4f288c1 switches to
rust-musl-cross
images updated with the upstream1c8fa7f and a80850f fix Windows build errors and lints