From 66f3ed48e502a60971f94bb8e73ec9dc7bc8d6ca Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 27 Nov 2025 21:24:50 +0100 Subject: [PATCH] chore: add custom test for python 3.12 --- tests/python3.12.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/python3.12.scm diff --git a/tests/python3.12.scm b/tests/python3.12.scm new file mode 100644 index 0000000000000000000000000000000000000000..e3f76e410e024233cf02fb6365649366596c1798 --- /dev/null +++ b/tests/python3.12.scm @@ -0,0 +1,15 @@ +(use-modules + (ruther packages python-next) + (guix packages) + (gnu packages python-check) + (gnu packages python-xyz) + (gnu packages check)) + +(with-explicit-python-3.12 + (package + (inherit python-iniconfig))) + +(with-explicit-python-3.12 + (list + python-pylint + python-mypy))