From 1808488932dff7d4570a0b6ebb03adee2863ac40 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 10 Mar 2022 13:45:56 -0500 Subject: [PATCH] Bump python to 310 --- shells/python.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/shells/python.nix b/shells/python.nix index 61aaab3..1f02624 100644 --- a/shells/python.nix +++ b/shells/python.nix @@ -4,11 +4,14 @@ with pkgs; mkShell { buildInputs = [ - python38Packages.pip - python38Packages.pip-tools - python38Packages.pyls-mypy - python38Packages.pyls-isort - python38Packages.pyls-black + python310Packages.pip + python310Packages.pip-tools + python310Packages.python-lsp-black + python310Packages.python-lsp-server + python310Packages.python-lsp-jsonrpc + # python310Packages.pyls-mypy + # python310Packages.pyls-isort + # python310Packages.pyls-black ]; shellHook = '' '';