From 64b7d063fa49405ef13fccedbe0a67d820b5a114 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 13 Mar 2024 17:01:32 -0400 Subject: [PATCH] Bumping up python versions Signed-off-by: Simo Sorce --- .github/workflows/build.yml | 9 +++++---- setup.py | 5 +++-- tox.ini | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30e6e11..6b7bbc5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,17 +8,18 @@ "fail-fast": false, "matrix": { "python": [ - "3.6", - "3.7", "3.8", "3.9", + "3.10", + "3.11", + "3.12", ], }, }, "steps": [ - { "uses": "actions/checkout@v2" }, + { "uses": "actions/checkout@v4" }, { - "uses": "actions/setup-python@v2", + "uses": "actions/setup-python@v5", "with": { "python-version": "${{ matrix.python }}"}, }, { "run": "pip install tox" }, diff --git a/setup.py b/setup.py index 4b34fcc..209e28d 100644 --- a/setup.py +++ b/setup.py @@ -67,10 +67,11 @@ def read(fname): "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Internet :: Proxy Servers", ], ) diff --git a/tox.ini b/tox.ini index 9672cee..a72ce46 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.3.1 -envlist = py36,py37,py38,py39,pep8,py3pep8,doc +envlist = py38,py39,py310,py311,pep8,py3pep8,doc skip_missing_interpreters = true [testenv]