Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.10", "3.14"]
python-version: ["3.11", "3.14"]
runs-on: ${{ matrix.platform }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v6
with:
python-version: 3.11
python-version: 3.13

- name: Install dependencies / build sdist
run: |
Expand Down
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ sphinx:
fail_on_warning: false

build:
os: "ubuntu-22.04"
os: "ubuntu-24.04"
tools:
python: "3.10"
python: "3.12"

python:
install:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ Documentation of the PEtab format in general is available at

## Installation

The PEtab library is available on [pypi](https://pypi.org/project/petab/)
The PEtab library is available on [PyPI](https://pypi.org/project/petab/)
and the easiest way to install it is running

pip3 install petab

It will require Python>=3.10 to run. (We are following the
[numpy Python support policy](https://numpy.org/neps/nep-0029-deprecation_policy.html)).
`petab` requires Python>=3.11. We are following
[NumPy's Python support policy](https://numpy.org/neps/nep-0029-deprecation_policy.html).

Development versions of the PEtab library can be installed using

Expand Down
11 changes: 9 additions & 2 deletions petab/v2/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@
from math import nan
from numbers import Number
from pathlib import Path
from typing import TYPE_CHECKING, Annotated, Any, Generic, TypeVar, get_args
from typing import (
TYPE_CHECKING,
Annotated,
Any,
Generic,
Self,
TypeVar,
get_args,
)

import numpy as np
import pandas as pd
Expand All @@ -31,7 +39,6 @@
field_validator,
model_validator,
)
from typing_extensions import Self

from .._utils import _generate_path
from ..v1 import (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
name = "petab"
dynamic = ["version", "readme"]
description = "Parameter estimation tabular data"
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.15.1",
"pandas>=1.2.0",
Expand Down