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
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: 0.9.26
version: 0.10.0
enable-cache: true

- name: Run prek
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: 0.9.26
version: 0.10.0
python-version: ${{ matrix.python_version }}
enable-cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: 0.9.26
version: 0.10.0

- name: Install the project
run: uv sync --locked --all-extras --dev
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_language_version:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: no-commit-to-branch
args: [--branch, main]
Expand All @@ -24,22 +24,22 @@ repos:
- --indent=2
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.12.0
rev: v0.15.0
hooks:
- id: ruff-check
types_or: [python, pyi]
args: [--fix]
- id: ruff-format
types_or: [python, pyi]
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
rev: v2.16.0
hooks:
- id: pretty-format-yaml
args: [--autofix, --indent, '2', --offset, '2', --line-width, '80']
- id: pretty-format-toml
args: [--autofix, --indent, '2']
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.7.15
rev: 0.10.0
hooks:
- id: uv-lock
13 changes: 11 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,17 @@ dependencies = [
'pydantic>=2.12;python_version>="3.14"',
"pydantic-settings>=2.12.0"
]
description = "An extremely lightweight typing library for torch tensors or numpy arrays. Supports runtime shape checking and data type validation."
keywords = ["pytorch", "numpy", "shape check", "type check"]
description = "An extremely lightweight and typing library for torch tensors, jax arrays, and numpy arrays. Supports runtime shape checking and data type validation."
keywords = [
"pytorch",
"numpy",
"jax",
"shape check",
"type check",
"typing",
"deep learning",
"torch"
]
license = "Apache-2.0"
license-files = ["LICENSE"]
name = "dltype"
Expand Down
Loading