Skip to content
Open
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
7 changes: 0 additions & 7 deletions .aider.conf.yml

This file was deleted.

14 changes: 7 additions & 7 deletions .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"hooks": [
{
"type": "command",
"command": "poetry run python-claude session start"
"command": "uv run python-claude session start"
},
{
"type": "command",
"command": "poetry run python-claude git status"
"command": "uv run python-claude git status"
}
]
}
Expand All @@ -19,19 +19,19 @@
"hooks": [
{
"type": "command",
"command": "poetry run python-claude ruff format"
"command": "uv run python-claude ruff format"
},
{
"type": "command",
"command": "poetry run python-claude ruff check"
"command": "uv run python-claude ruff check"
},
{
"type": "command",
"command": "poetry run python-claude mypy"
"command": "uv run python-claude mypy"
},
{
"type": "command",
"command": "poetry run python-claude pytest"
"command": "uv run python-claude pytest"
}
]
}
Expand All @@ -42,7 +42,7 @@
"hooks": [
{
"type": "command",
"command": "poetry run python-claude edited"
"command": "uv run python-claude edited"
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
paths:
- .github/workflows/ci.yml
- poetry.lock
- uv.lock
- pyproject.toml
- src/**
- tests/**
push:
paths:
- .github/workflows/ci.yml
- poetry.lock
- uv.lock
- pyproject.toml
- src/**
- tests/**
Expand Down
534 changes: 0 additions & 534 deletions poetry.lock

This file was deleted.

23 changes: 12 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ classifiers = [
'Programming Language :: Python :: 3.14',
]

[tool.poetry]
packages = [{ include = "cvec", from = "src" }]


[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
mypy = "^1.15.0"
ruff = "^0.11.10"
python-claude = "^0.3.0"
[dependency-groups]
dev = [
"pytest>=8.3.5,<9",
"mypy>=1.15.0,<2",
"ruff>=0.11.10,<1",
"python-claude>=0.3.0,<0.4",
]

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/cvec"]
19 changes: 0 additions & 19 deletions scripts/lint.sh

This file was deleted.

459 changes: 459 additions & 0 deletions uv.lock

Large diffs are not rendered by default.

Loading