Skip to content

Commit

Permalink
Drop Python 3.8, add Python 3.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
tdenewiler committed Oct 15, 2024
1 parent 5dd5d16 commit 1002d63
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-20.04, ubuntu-22.04, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ authors = [{name = "NIWC Pacific"}]
description="Statick analysis plugins for TeX/LaTeX files and projects."
version = "0.3.5"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "CC0-1.0"}
classifiers = [
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Text Processing :: Markup :: LaTeX",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[tox]
envlist = py38, py39, py310, py311, py312
envlist = py39, py310, py311, py312, py313
skip_missing_interpreters = true

[pytest]
norecursedirs = .tox build

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[testenv]
changedir = {toxinidir}/output-{envname}
Expand Down

0 comments on commit 1002d63

Please sign in to comment.