From e7ddcb8686859cf3033b2a5d1a2934426abdae9d Mon Sep 17 00:00:00 2001 From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:19:08 -0500 Subject: [PATCH] Fuzz on Python 3.9 too (#1882) Fuzzing on Python 3.9 used to cause errors but now they have disappeared on more modern Python 3.9 and Hypothesmith. --- .github/workflows/fuzz.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 343eed1..0153767 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8] # Python3.9 should be added after fixing [https://github.com/Zac-HD/hypothesmith/issues/11]. + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 -- 2.39.2