Skip to content

Commit

Permalink
py37 is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
gawel committed Jun 18, 2024
1 parent 5431f16 commit f2533d1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
MOZ_HEADLESS: "1"
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
python: [3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- name: Setup firefox
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
python: [3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
python: [3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ def read(*names):
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords='jquery html xml scraping',
author='Olivier Lauzanne',
Expand All @@ -64,7 +65,7 @@ def read(*names):
'bootstrap', 'bootstrap-py3k', 'docs', 'tests', 'README_fixt'
]),
extras_require={
'test': ['requests', 'webob', 'webtest', 'pytest', 'pytest-cov'],
'test': ['requests', 'webob', 'webtest', 'pytest', 'pytest-cov'],
},
include_package_data=True,
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py37,py38,py39,py310,py311,py312
envlist=py38,py39,py310,py311,py312

[testenv]
whitelist_externals=
Expand Down

0 comments on commit f2533d1

Please sign in to comment.