flake.nix: bump python from 3.12 -> 3.13
All checks were successful
Run tests / run-tests (push) Successful in 2m8s
Run benchmarks / run-tests (push) Successful in 9m43s

This commit is contained in:
2025-12-13 15:55:56 +09:00
parent ec907bb4e0
commit a2c41bd7ea
3 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@
packages = forAllSystems (system: pkgs: {
default = self.packages.${system}.dibbler;
dibbler = pkgs.callPackage ./nix/dibbler.nix {
python3Packages = pkgs.python312Packages;
python3Packages = pkgs.python313Packages;
};
skrot = self.nixosConfigurations.skrot.config.system.build.sdImage;
});
@@ -42,7 +42,7 @@
devShells = forAllSystems (system: pkgs: {
default = self.devShells.${system}.dibbler;
dibbler = pkgs.callPackage ./nix/shell.nix {
python3 = pkgs.python312;
python3 = pkgs.python313;
};
});