Skip to content

Commit

Permalink
remove support for py35/36. add py310
Browse files Browse the repository at this point in the history
  • Loading branch information
gawel committed Dec 28, 2022
1 parent 1863290 commit abf7cd7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tox.yml
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist=py35,py36,py37,py38
envlist=py37,py38,py39,py310

[testenv]
whitelist_externals=
Expand All @@ -15,7 +15,7 @@ deps =
[testenv:flake8]
skipsdist=true
skip_install=true
basepython = python3.8
basepython = python3.9
commands =
flake8 pyquery tests
deps =
Expand All @@ -24,7 +24,7 @@ deps =
[testenv:docs]
skip_install=false
skipsdist=true
basepython = python3.8
basepython = python3.9
changedir = docs
deps =
sphinx
Expand Down

0 comments on commit abf7cd7

Please sign in to comment.