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 4, 2024
1 parent 2b1e19d commit c353b3c
Show file tree
Hide file tree
Showing 4 changed files with 6 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: dc4c64d
_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__/
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ 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 | grep -v '^-e ')

typos:
typos
6 changes: 3 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 Down

0 comments on commit c353b3c

Please sign in to comment.