feat: move to python3.11

This commit is contained in:
Kat Inskip 2024-07-13 10:55:07 -07:00
parent 734bc56e7d
commit 936050d035
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
4 changed files with 11 additions and 11 deletions

View file

@ -14,7 +14,7 @@
pkgs = nixpkgs.legacyPackages.${system};
in {
packages = rec {
konawall-py = pkgs.python3.pkgs.callPackage ./package.nix {};
konawall-py = pkgs.python311.pkgs.callPackage ./package.nix {};
default = konawall-py;
};
});