Skip to content

Commit

Permalink
chore: update copier template
Browse files Browse the repository at this point in the history
  • Loading branch information
vivienm committed Sep 28, 2024
1 parent 2b1e19d commit 0232691
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes here will be overwritten by Copier. NEVER EDIT MANUALLY.

_commit: 1478dd4
_commit: c021913
_src_path: https://github.com/vivienm/copier-python-uv
author_email: [email protected]
author_name: Vivien Maisonneuve
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
/build/
/dist/
/target/
__pycache__/
3 changes: 2 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ sphinx:

[group('python')]
pip-audit:
uv run pip-audit --strict --require-hashes --disable-pip --requirement <(uv pip compile --no-header --no-annotate --generate-hashes --universal <(uv pip list --format=freeze --exclude-editable))
uv run pip-audit --strict --require-hashes --disable-pip --requirement \
<(uv export --format requirements-txt --all-extras --no-emit-project)

typos:
typos
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
name = "tdigest-ch"
version = "0.1.0"
description = "A Python library for estimating quantiles in a stream, using ClickHouse t-digest data structure"
readme = "README.md"
authors = [
{ name = "Vivien Maisonneuve", email = "[email protected]" },
]
dependencies = []
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = ["Private :: Do Not Upload"]
requires-python = ">=3.10"
dependencies = []

[project.urls]
Documentation = "https://vivienm.github.io/python-tdigest-ch"
Expand All @@ -32,6 +32,11 @@ dev-dependencies = [
"sphinx>=8.0.2",
"tdigest>=0.5.2.2",
]
cache-keys = [
{ file = "Cargo.toml" },
{ file = "Cargo.lock"},
{ file = "src/**/*.rs" },
]

[tool.maturin]
python-source = "python"
Expand Down

0 comments on commit 0232691

Please sign in to comment.