-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pre-commit hooks, change lockfile to use uv pip compile (#278)
* Update pre-commit hooks, change lockfile to use uv pip compile uv is much faster and thus more appropriate for a mandatory commit hook. NB: setuptools is now in the lockfile, because uv does not have a "unsafe package exclusion" facility. duckdb was downgraded to v0.10.0, which is the last version without segfaults on cleanup with registered file systems. * Update lockfile generation script to use `uv pip compile` In place of regular pip-compile. * Access error message safely, rework test assumptions We were getting some bad accesses (key errors) on empty-body API responses from the lakeFS server, causing a crash in the error handling. * Silence git-revision plugin warnings, add date fallback This solution lets us upgrade the mkdocs tech stack, while not abandoning strict mode just for the git-revision plugin. The root cause for the previous failures is not yet determined, but has something to do with recent mkdocs/mkdocs-material updates. * Bump lakefs-sdk to latest * fix(ci): Allow slight decreases in coverage for PRs --------- Co-authored-by: Adrian Rumpold <[email protected]>
- Loading branch information
1 parent
b5a1f85
commit 6bd0070
Showing
8 changed files
with
132 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
# Allow slight decreases in coverage for PRs | ||
threshold: "1%" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,41 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.11 | ||
# by the following command: | ||
# | ||
# pip-compile --extra=dev --no-annotate --output-file=requirements-dev.txt pyproject.toml | ||
# | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile --no-annotate --no-strip-extras --extra=dev --output-file=requirements-dev.txt pyproject.toml | ||
aenum==3.1.15 | ||
build==1.0.3 | ||
annotated-types==0.6.0 | ||
build==1.2.1 | ||
cfgv==3.4.0 | ||
click==8.1.7 | ||
coverage[toml]==7.4.1 | ||
coverage[toml]==7.5.1 | ||
distlib==0.3.8 | ||
docstring-parser-fork==0.0.5 | ||
duckdb==0.9.2 | ||
filelock==3.13.1 | ||
fsspec==2024.2.0 | ||
identify==2.5.33 | ||
duckdb==0.10.0 | ||
filelock==3.14.0 | ||
fsspec==2024.3.1 | ||
identify==2.5.36 | ||
iniconfig==2.0.0 | ||
lakefs==0.3.0 | ||
lakefs-sdk==1.9.1 | ||
lakefs==0.6.0 | ||
lakefs-sdk==1.21.0 | ||
nodeenv==1.8.0 | ||
numpy==1.26.3 | ||
packaging==23.2 | ||
pandas[parquet]==2.2.0 | ||
platformdirs==4.2.0 | ||
pluggy==1.4.0 | ||
polars==0.20.7 | ||
pre-commit==3.6.0 | ||
pyarrow==15.0.0 | ||
pydantic==1.10.14 | ||
pydoclint==0.3.9 | ||
pyproject-hooks==1.0.0 | ||
pytest==8.0.0 | ||
pytest-cov==4.1.0 | ||
python-dateutil==2.8.2 | ||
numpy==1.26.4 | ||
packaging==24.0 | ||
pandas[parquet]==2.2.2 | ||
platformdirs==4.2.1 | ||
pluggy==1.5.0 | ||
polars==0.20.23 | ||
pre-commit==3.7.0 | ||
pyarrow==16.0.0 | ||
pydantic==2.7.1 | ||
pydantic-core==2.18.2 | ||
pydoclint==0.4.1 | ||
pyproject-hooks==1.1.0 | ||
pytest==8.2.0 | ||
pytest-cov==5.0.0 | ||
python-dateutil==2.9.0.post0 | ||
pytz==2024.1 | ||
pyyaml==6.0.1 | ||
setuptools==68.2.2 | ||
six==1.16.0 | ||
typing-extensions==4.9.0 | ||
tzdata==2023.4 | ||
typing-extensions==4.11.0 | ||
tzdata==2024.1 | ||
urllib3==2.0.7 | ||
virtualenv==20.25.0 | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools | ||
virtualenv==20.26.1 |
Oops, something went wrong.