Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ['3.12']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tabulate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
build:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down
22 changes: 18 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# for testing and it is disabled by default.

[tox]
envlist = lint, py{38, 39, 310, 311, 312, 313}
envlist = lint, py{38, 39, 310, 311, 312, 313, 314}
isolated_build = True

[gh]
Expand All @@ -18,6 +18,7 @@ python =
3.11: py311-extra
3.12: py312-extra
3.13: py313-extra
3.14: py314-extra

[testenv]
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
Expand Down Expand Up @@ -48,7 +49,6 @@ deps =
pandas
wcwidth


[testenv:py39]
basepython = python3.9
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
Expand All @@ -64,7 +64,6 @@ deps =
pandas
wcwidth


[testenv:py310]
basepython = python3.10
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
Expand All @@ -81,7 +80,6 @@ deps =
pandas
wcwidth


[testenv:py311]
basepython = python3.11
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
Expand Down Expand Up @@ -130,6 +128,22 @@ deps =
pandas
wcwidth

[testenv:py314]
basepython = python3.14
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py314-extra]
basepython = python3.14
setenv = PYTHONDEVMODE = 1
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
pandas
wcwidth

[flake8]
max-complexity = 22
max-line-length = 99
Expand Down
Loading