Skip to content

Commit

Permalink
feat: Add support for Python 3.12 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored Apr 1, 2024
1 parent 695899e commit 6a6de81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- name: Checkout repository
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
packages = svgcheck, svgcheck.Results, svgcheck.Tests, svgcheck.Tests.cache_saved
python_requires = >=3.7, <3.12
python_requires = >=3.7, <3.13
install_requires =
lxml>=4.1.1
xml2rfc>=3.16.0
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py{37,38,39,310,311}-{linux,macos,windows}
envlist = py{37,38,39,310,311,312}-{linux,macos,windows}

[gh-actions]
python =
Expand All @@ -13,6 +13,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[gh-actions:env]
PLATFORM =
Expand Down

0 comments on commit 6a6de81

Please sign in to comment.