From 029d79053743a2657395ce7bf788da5f1ce5cafd Mon Sep 17 00:00:00 2001 From: Guillaume Poirier-Morency Date: Mon, 19 Aug 2024 11:08:09 -0700 Subject: [PATCH] Drop support for Python 2.7 and require Python 3.9+ --- .github/workflows/ci.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5733f9f..223b40a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.6"] + python-version: ["3.9"] steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index d936347..6b97aaa 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py27,py36 +envlist=py39 [testenv] deps=pytest