tests.pep600: Set a fixed python version (3.8)

This commit is contained in:
adisbladis 2022-09-02 10:35:10 +12:00
parent 2758358d60
commit 4b586ea0ab

View file

@ -1,7 +1,7 @@
{ lib, poetry2nix, python3, runCommand }:
{ lib, poetry2nix, python38, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
python = python38;
preferWheels = true;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;