chore(python): keep only python in this repo#1
Merged
korniltsev-grafanista merged 1 commit intomainfrom Apr 2, 2026
Merged
Conversation
43c69c9 to
467d057
Compare
Restructure from monorepo layout to standalone Python package: - rust/ — Rust extension (pyroscope dep from crates.io, not path) - python/ — Python package source - scripts/tests/ — FFI compilation and integration test - docker/ — wheel and musllinux Dockerfiles - Makefile — linux/musllinux/mac build targets, check/tag-version - Add version sync test (Cargo.toml vs pyproject.toml) - Add ci-rust.yml workflow for Rust fmt/clippy/test - Add tag-version verification step in release workflow Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
467d057 to
4441e94
Compare
simonswine
approved these changes
Apr 2, 2026
korniltsev-grafanista
added a commit
to grafana/pyroscope-rs
that referenced
this pull request
Apr 2, 2026
Python, Ruby, and kindasafe have been extracted to their own repositories: - grafana/pyroscope-python (grafana/pyroscope-python#1) - grafana/pyroscope-ruby (grafana/pyroscope-ruby#1) This leaves pyroscope-rs as a pure Rust profiling library crate. Removed: - `pyroscope_ffi/` — all Python and Ruby FFI source code - `kit/` — kindasafe and kindasafe_init crates - `docker/` — wheel, musllinux, and gem Dockerfiles - `ci/` — version bump, tag check, spy version check scripts - All Python/Ruby/kindasafe CI workflows - `pyproject.toml`, `setup.py`, `MANIFEST.in`, `ffi.mk` - `[workspace]` and `[workspace.dependencies]` — inlined deps, no more workspace members Simplified: - `release.yml` — only `lib-*` tags, uses `make check/lib-tag-version` - `ci-rust.yml` — single package, no matrix; removed kindasafe-versions check and macOS test job - `Makefile` — removed FFI targets, added `check/lib-tag-version` Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Collaborator
Author
|
@codex review |
|
Codex Review: Didn't find any major issues. 🎉 ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
This file contains hidden or 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
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.
Restructure from monorepo layout to standalone Python package repo.
rust/— Rust extension withpyroscope = "2.0.0"from crates.io (not path dep)python/— Python package source (pyroscope + pyroscope_io)scripts/tests/— FFI compilation and integration test scriptsdocker/— wheel and musllinux Dockerfiles (adapted paths)Makefile— linux/musllinux/mac build targets, check/tag-version, ffi header/cffi generationtest_cargo_version_matches_python_versionRust test (Cargo.toml vs pyproject.toml)ci-rust.ymlworkflow for Rust fmt/clippy/testCompanion PR to remove Python from pyroscope-rs: grafana/pyroscope-rs#488