From ebcbf5a92d8f4689f57ce53a98b6557f4585e791 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 18 Oct 2021 11:30:23 -0700 Subject: [PATCH] Add py3.10 to CI --- .drone.jsonnet | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index cadb1db..ddc2540 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -37,5 +37,6 @@ local test_with(version, use_network=false) = { test_with("3.7"), test_with("3.8"), test_with("3.9"), - test_with("3.9", use_network=true), + test_with("3.10"), + test_with("3.10", use_network=true), ]