Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
DEFAULT_PYTHON: '3.12'
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']
architecture: ['x64']

steps:
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
cache: pip
cache-dependency-path: pyproject.toml

- name: Install nox
run: pip install nox==2025.5.1
run: pip install nox==2026.02.09

- name: Lint with flake8
if: ${{ matrix.python-version == '3.12' }}
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def mypy(session) -> None:
)


@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"])
def pytest(session) -> None:
"""Test with pytest."""
posargs = session.posargs if session.posargs else ["-vv", "tests"]
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License"
Expand All @@ -49,24 +50,24 @@ dev = [
"numpy~=2.2.0; python_version >= '3.10'",
"numpy~=2.0; python_version < '3.10'",
"python-dateutil~=2.9.0",
"orjson~=3.10.0",
"orjson~=3.11.5",
"tomli~=2.2.0",
"tomli-w~=1.2.0",
"pandas~=2.2.0",
"polars~=1.21.0",
"nox==2025.5.1",
"nox==2026.02.09",
"uuid6==2025.0.1",
]
docs = [
# We use the html style that is not supported in Sphinx 7 anymore.
# We use the HTML style that is not supported in Sphinx 7 anymore.
"Sphinx~=6.2.0",
"sphinx-sitemap~=2.6.0",
"sphinxemoji~=0.3.0"
]
static = [
"flake8~=7.1.0",
"flake8-pyproject~=1.2.3",
"pydantic~=2.10.0",
"pydantic~=2.12.5",
]
test = [
"pytest~=8.3.0",
Expand Down
Loading