Skip to content

Commit 6fc04d0

Browse files
committed
build: add python3.13 to tox.ini for local testing
1 parent 2c42615 commit 6fc04d0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

requirements-optional.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# 3.2 $ export C_INCLUDE_PATH=/usr/include/python3.11/Python.h
1313

1414

15-
blosc ; python_version >= '3.7'
15+
blosc ; python_version >= '3.7' and python_version != '3.13'
1616

1717
# Throubleshooting:
1818
# 1. $ pip install --prefer-binary -r requirements-optional.txt

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py36, py37, py38, py39, py310, py311, {py36,py37,py38,py39,py310,py311,py312}-docs
7+
envlist = py27, py36, py37, py38, py39, py310, py311, py312, py313, {py36,py37,py38,py39,py310,py311,py312,py313}-docs
88

99
[testenv]
1010
# get stable output for unordered types
1111
setenv =
1212
PYTHONHASHSEED = 42
1313
py27: PY_MAJOR_VERSION = py2
14-
py36,py37,py38,py39,py310,py311,py312: PY_MAJOR_VERSION = py3
14+
py36,py37,py38,py39,py310,py311,py312,py313: PY_MAJOR_VERSION = py3
1515
commands =
1616
pytest --cov=petl --cov-report lcov:lcov.info petl
1717
coverage report -m
1818
deps =
1919
-rrequirements-tests.txt
2020
-rrequirements-formats.txt
2121

22-
[testenv:{py36,py37,py38,py39,py310,py311,py312}-docs]
22+
[testenv:{py36,py37,py38,py39,py310,py311,py312,py313}-docs]
2323
# build documentation under similar environment to readthedocs
2424
changedir = docs
2525
deps =
2626
-rrequirements-docs.txt
2727
commands =
2828
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
2929

30-
[testenv:{py36,py37,py38,py39,py310,py311,py312}-doctest]
30+
[testenv:{py36,py37,py38,py39,py310,py311,py312,py313}-doctest]
3131
commands =
32-
py36,py37,py38,py39,py310,py311,py312: pytest --doctest-modules --cov=petl --cov-report lcov:lcov.info petl
32+
py36,py37,py38,py39,py310,py311,py312,py313: pytest --doctest-modules --cov=petl --cov-report lcov:lcov.info petl
3333
[testenv:{py36,py37,py38,py39}-dochtml]
3434
changedir = docs
3535
deps =

0 commit comments

Comments
 (0)