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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ repos:
- '--fix=lf'

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.13.1'
rev: 'v0.14.3'
hooks:
- id: ruff
args: [--fix]
- id: ruff-format

- repo: https://github.com/compilerla/conventional-pre-commit
rev: 'v4.2.0'
rev: 'v4.3.0'
hooks:
- id: conventional-pre-commit
stages: [commit-msg]

- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.8.19
rev: 0.9.7
hooks:
- id: uv-lock

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ packages = ["src/ort"]

[project]
name = "python-ort"
version = "0.1.4"
version = "0.2.0"
description = "A Python Ort model serialization library"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.11.10",
"pydantic>=2.12.4",
"pyyaml>=6.0.3",
]
classifiers = [
Expand All @@ -34,12 +34,12 @@ module-root = "src"

[dependency-groups]
dev = [
"datamodel-code-generator[http]>=0.34.0",
"datamodel-code-generator[http]>=0.35.0",
"pre-commit>=4.3.0",
"pycodestyle>=2.14.0",
"pyrefly>=0.35.0",
"pyrefly>=0.40.0",
"pytest>=8.4.2",
"ruff>=0.13.3",
"ruff>=0.14.3",
"types-pyyaml>=6.0.12.20250915",
]

Expand Down
Loading