From 45c61a06efbc873c61bdc54d9af1cb1e6465dcdf Mon Sep 17 00:00:00 2001 From: TuxCoder Date: Fri, 17 Jun 2022 13:39:03 +0200 Subject: [PATCH] update python to 3.10 --- default.nix | 2 +- shell.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 0268d71..bf130a1 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,6 @@ { pkgs, - python ? pkgs.python39, + python ? pkgs.python310, nodejs ? pkgs.nodejs, ...}: let diff --git a/shell.nix b/shell.nix index b7b1eb8..a9c603b 100644 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,6 @@ { pkgs ? import {}, - python ? pkgs.python39 + python ? pkgs.python310 }: let settings = import ./default.nix {inherit pkgs python;};