pytrainer: unpin python 3.10

The `websockets` library, which is a transitive dependency does not
build with Python 3.10 any more. Switching to the default Python
version fixes the build.
This commit is contained in:
Tobias Mayer
2024-11-04 09:53:36 +01:00
committed by Robert Helgesson
parent fe21dd5ab5
commit efd6331c95
+2 -2
View File
@@ -1,5 +1,5 @@
{ lib
, python310
, python3
, fetchFromGitHub
, gdk-pixbuf
, adwaita-icon-theme
@@ -17,7 +17,7 @@
}:
let
python = python310.override {
python = python3.override {
self = python;
packageOverrides = (self: super: {
matplotlib = super.matplotlib.override {