Skip to content

Commit

Permalink
Bumping up python versions
Browse files Browse the repository at this point in the history
Signed-off-by: Simo Sorce <[email protected]>
  • Loading branch information
simo5 committed Mar 13, 2024
1 parent 8df33b6 commit 64b7d06
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 64b7d06

Please sign in to comment.