From 4728d9b648bc1912db9bd96c5e0dd0113e417169 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Thu, 24 Apr 2025 14:26:50 +0400 Subject: [PATCH] Run PyTorch tests on 3.12 too (#779) PyTorch 2.3.1 does support Python 3.12. --- noxfile.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/noxfile.py b/noxfile.py index cb9dc4e..46d6a40 100644 --- a/noxfile.py +++ b/noxfile.py @@ -116,9 +116,6 @@ def test(session, pandas_version: str): "--nbval", ) - # PyTorch 2.3.1 doesn't support Python 3.12 - if session.python == "3.12": - pytest_args += ("--ignore=eland/ml/pytorch",) session.run( *pytest_args, *(session.posargs or ("eland/", "tests/")),