From 32edd4b55aeab269917521a60892382d9d09525f Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 16 Jan 2024 17:33:22 +0300 Subject: [PATCH] Upgrade python to 3.12 --- modules/python.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/python.nix b/modules/python.nix index a63dd7c..564f2ce 100644 --- a/modules/python.nix +++ b/modules/python.nix @@ -1,12 +1,12 @@ { ulib, pkgs, ... }: with ulib; merge (systemPackages (with pkgs; [ - (python311.withPackages (pkgs: with pkgs; [ + (python312.withPackages (pkgs: with pkgs; [ pip requests ])) virtualenv - poetry + # poetry # Broken for some reason ATM. ])) (homeConfiguration {