diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 6428001..0c50abe 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -10,7 +10,7 @@ jobs: MOZ_HEADLESS: "1" strategy: matrix: - python: [3.5, 3.6, 3.7, 3.8, 3.9] + python: [3.7, 3.8, 3.9, "3.10"] steps: - name: Setup firefox @@ -32,4 +32,4 @@ jobs: tox -e py - name: Run flake8 / docs run: tox -e flake8,docs - if: matrix.python == 3.8 + if: matrix.python == 3.9 diff --git a/setup.py b/setup.py index 3a446f6..48b79ea 100644 --- a/setup.py +++ b/setup.py @@ -50,9 +50,9 @@ def read(*names): "Intended Audience :: Developers", "Development Status :: 5 - Production/Stable", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], keywords='jquery html xml scraping', author='Olivier Lauzanne', diff --git a/tox.ini b/tox.ini index 8ff86a2..78202c9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py35,py36,py37,py38 +envlist=py37,py38,py39,py310 [testenv] whitelist_externals= @@ -15,7 +15,7 @@ deps = [testenv:flake8] skipsdist=true skip_install=true -basepython = python3.8 +basepython = python3.9 commands = flake8 pyquery tests deps = @@ -24,7 +24,7 @@ deps = [testenv:docs] skip_install=false skipsdist=true -basepython = python3.8 +basepython = python3.9 changedir = docs deps = sphinx