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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- '--fix=lf'

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.14.3'
rev: 'v0.14.4'
hooks:
- id: ruff
args: [--fix]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ packages = ["src/ort"]

[project]
name = "python-ort"
version = "0.2.0"
version = "0.3.0"
description = "A Python Ort model serialization library"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.12.4",
"pyyaml>=6.0.3",
]
classifiers = [
"Development Status :: 3 - Alpha",
Expand All @@ -25,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]

Expand All @@ -39,7 +39,7 @@ dev = [
"pycodestyle>=2.14.0",
"pyrefly>=0.40.0",
"pytest>=8.4.2",
"ruff>=0.14.3",
"ruff>=0.14.4",
"types-pyyaml>=6.0.12.20250915",
Copy link

Copilot AI Nov 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'types-pyyaml' package is still listed in dev dependencies, but 'pyyaml' has been removed from the main dependencies. Since the codebase no longer uses pyyaml, the type stubs are also unnecessary and should be removed.

Suggested change
"types-pyyaml>=6.0.12.20250915",

Copilot uses AI. Check for mistakes.
]

Expand Down
Loading
Loading