Skip to content

Commit a6d100e

Browse files
committed
Drop support of Python 3.9, support 3.13
1 parent cb92103 commit a6d100e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: ['3.12']
11+
python-version: ['3.13']
1212
include:
1313
- os: ubuntu-latest
14-
python-version: '3.8'
14+
python-version: '3.9'
1515
- os: ubuntu-latest
16-
python-version: 'pypy-3.9'
16+
python-version: 'pypy-3.10'
1717
steps:
1818
- uses: actions/checkout@v4
1919
with:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ documents (HTML, XML, etc.) that can be read by ElementTree-like parsers
33
(including cElementTree, lxml, html5lib, etc.)
44

55
* Free software: BSD license
6-
* For Python 3.8+, tested on CPython and PyPy
6+
* For Python 3.9+, tested on CPython and PyPy
77
* Documentation: https://doc.courtbouillon.org/cssselect2
88
* Changelog: https://github.com/Kozea/cssselect2/releases
99
* Code, issues, tests: https://github.com/Kozea/cssselect2

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = 'CSS selectors for Python ElementTree'
88
keywords = ['css', 'elementtree']
99
authors = [{name = 'Simon Sapin', email = 'simon.sapin@exyr.org'}]
1010
maintainers = [{name = 'CourtBouillon', email = 'contact@courtbouillon.org'}]
11-
requires-python = '>=3.8'
11+
requires-python = '>=3.9'
1212
readme = {file = 'README.rst', content-type = 'text/x-rst'}
1313
license = {file = 'LICENSE'}
1414
dependencies = ['tinycss2', 'webencodings']
@@ -20,11 +20,11 @@ classifiers = [
2020
'Programming Language :: Python',
2121
'Programming Language :: Python :: 3',
2222
'Programming Language :: Python :: 3 :: Only',
23-
'Programming Language :: Python :: 3.8',
2423
'Programming Language :: Python :: 3.9',
2524
'Programming Language :: Python :: 3.10',
2625
'Programming Language :: Python :: 3.11',
2726
'Programming Language :: Python :: 3.12',
27+
'Programming Language :: Python :: 3.13',
2828
'Programming Language :: Python :: Implementation :: CPython',
2929
'Programming Language :: Python :: Implementation :: PyPy',
3030
'Topic :: Internet :: WWW/HTTP',

0 commit comments

Comments
 (0)