From 205244cb67b814b0382a528a29bd868f344a56cc Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 7 Nov 2024 20:53:50 -0600 Subject: [PATCH] python 3.11 --- flake.nix | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index f3bff07..4fe8d93 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ inherit system; }; inherit (poetry2nix.lib.mkPoetry2Nix {inherit pkgs;}) mkPoetryApplication overrides; - python = pkgs.python312.withPackages (ps: + python = pkgs.python311.withPackages (ps: with ps; [ poetry-core ]); diff --git a/pyproject.toml b/pyproject.toml index 4a8476d..5f55360 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "" authors = ["Jeffrey C. Ollie "] [tool.poetry.dependencies] -python = "^3.12" +python = "^3.11" pydantic = "<2" hyperlink = "^21.0.0" websockets = "^13.1"