From 2dc005c5a19623936c8abacdfc1eac17114102bb Mon Sep 17 00:00:00 2001 From: Quoc-Tuan Truong <tqtg@users.noreply.github.com> Date: Thu, 8 Jul 2021 22:08:12 +0800 Subject: [PATCH] Remove python 3.9 --- .github/workflows/python-package.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0fab5de9..bfcef014 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 @@ -24,6 +24,8 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Display Python version + run: python -c "import sys; print(sys.version)" - name: Install dependencies run: | python -m pip install --upgrade pip -- GitLab