Skip to content

Commit 36b3f6a

Browse files
committed
Update supported and tested Python versions
1 parent 5e6026f commit 36b3f6a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.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.14']
1212
include:
1313
- os: ubuntu-latest
14-
python-version: '3.8'
14+
python-version: '3.10'
1515
- os: ubuntu-latest
16-
python-version: 'pypy-3.8'
16+
python-version: 'pypy-3.11'
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
@@ -7,7 +7,7 @@ CSS but doesn't know specific rules, properties or values supported in various
77
CSS modules.
88

99
* Free software: BSD license
10-
* For Python 3.8+, tested on CPython and PyPy
10+
* For Python 3.10+, tested on CPython and PyPy
1111
* Documentation: https://doc.courtbouillon.org/tinycss2
1212
* Changelog: https://github.com/Kozea/tinycss2/releases
1313
* Code, issues, tests: https://github.com/Kozea/tinycss2

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = 'A tiny CSS parser'
88
keywords = ['css', 'parser']
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.10'
1212
readme = {file = 'README.rst', content-type = 'text/x-rst'}
1313
license = {file = 'LICENSE'}
1414
dependencies = ['webencodings >=0.4']
@@ -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',
24-
'Programming Language :: Python :: 3.9',
2523
'Programming Language :: Python :: 3.10',
2624
'Programming Language :: Python :: 3.11',
2725
'Programming Language :: Python :: 3.12',
26+
'Programming Language :: Python :: 3.13',
27+
'Programming Language :: Python :: 3.14',
2828
'Programming Language :: Python :: Implementation :: CPython',
2929
'Programming Language :: Python :: Implementation :: PyPy',
3030
'Topic :: Text Processing',

0 commit comments

Comments
 (0)