Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

flakeReview = python.pkgs.buildPythonApplication {
pname = "flake-review";
version = "0.1.0";
version = "0.1.1";

Comment on lines 45 to 48
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Nix derivation version was bumped to 0.1.1, but the project’s Python metadata still appears to be 0.1.0 (e.g., pyproject.toml project.version and flake_review/__init__.py __version__). This will leave the flake package version out of sync with the Python package/version reported at runtime. Consider sourcing the version from pyproject.toml (single source of truth) or bumping the Python metadata in the same change set.

Copilot uses AI. Check for mistakes.
src = pkgs.lib.sources.sourceFilesBySuffices ./. [
".py"
Expand Down
Loading