From 5f32630275e34c3629aa5e91eb960dc3042b7ccc Mon Sep 17 00:00:00 2001 From: Fabian Schuh Date: Mon, 20 Nov 2023 15:10:25 +0100 Subject: [PATCH] ci: remove py 3.6 and 3.7 from pipeline --- .github/workflows/tox.yml | 2 +- tox.ini | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index ca577d8..5edfca8 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.8, 3.9] steps: - name: Install secp256k1 diff --git a/tox.ini b/tox.ini index 7f15471..a3520d6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] -envlist = py{36,37,38}-{linux,windows},lint,docs +envlist = py{38,39}-{linux,windows},lint,docs skip_missing_interpreters = true [gh-actions] python = - 3.6: py36 - 3.7: py37 + 3.9: py39 3.8: py38, lint, docs [testenv]