Commit d8a16986 authored by Peter Grayson's avatar Peter Grayson
Browse files

feat: support Python 3.13 and 3.14

parent 35ee64c7
Loading
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -55,6 +55,20 @@ python312:
    - python -m pip install tox
    - python -m tox -e py312

python313:
  image: python:3.13
  stage: test
  script:
    - python -m pip install tox
    - python -m tox -e py313

python314:
  image: python:3.14
  stage: test
  script:
    - python -m pip install tox
    - python -m tox -e py314

pypy3:
  image: pypy:3
  stage: test
+2 −0
Original line number Diff line number Diff line
@@ -31,6 +31,8 @@ classifiers = [
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
    "Topic :: Scientific/Engineering",
+1 −1
Original line number Diff line number Diff line
[tox]
envlist = py38,py39,py310,py311,py312,pypy3,docs,ruff,mypy,sphinx
envlist = py38,py39,py310,py311,py312,py313,py314,pypy3,docs,ruff,mypy,sphinx
isolated_build = True

[testenv]