From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Sun, 27 Dec 2020 15:19:08 +0000 (-0500) Subject: Fuzz on Python 3.9 too (#1882) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/e7ddcb8686859cf3033b2a5d1a2934426abdae9d?ds=sidebyside 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. --- 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