Skip to content

Commit 500391d

Browse files
committed
Update supported Python versions
1 parent abafa8a commit 500391d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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]
11-
python-version: ['3.7', '3.11']
11+
python-version: ['3.9', '3.13']
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
submodules: true
16-
- uses: actions/setup-python@v4
16+
- uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install CairoSVG

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CairoSVG is an SVG converter based on Cairo. It can export SVG files to PDF,
22
EPS, PS, and PNG files.
33

44
* Free software: LGPL license
5-
* For Python 3.7+, tested on CPython and PyPy
5+
* For Python 3.9+
66
* Documentation: https://cairosvg.org/documentation/
77
* Changelog: https://github.com/Kozea/CairoSVG/releases
88
* Code, issues, tests: https://github.com/Kozea/CairoSVG

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ classifiers =
2727
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
2828
Operating System :: OS Independent
2929
Programming Language :: Python :: 3 :: Only
30-
Programming Language :: Python :: 3.7
31-
Programming Language :: Python :: 3.8
3230
Programming Language :: Python :: 3.9
3331
Programming Language :: Python :: 3.10
3432
Programming Language :: Python :: 3.11
33+
Programming Language :: Python :: 3.12
34+
Programming Language :: Python :: 3.13
3535
Topic :: Multimedia :: Graphics :: Graphics Conversion
3636
project_urls =
3737
Documentation = https://cairosvg.org/documentation/

0 commit comments

Comments
 (0)