Skip to content

Commit

Permalink
fixup! [feature] Implement a faster git backend that works with pygit…
Browse files Browse the repository at this point in the history
…2 >= 1.15
  • Loading branch information
mxmlnkn committed Oct 6, 2024
1 parent e00d6a3 commit 096a33e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ jobs:
echo "Try to repair wheel"
zip -F dist/*whl --out fixed
zip -FF dist/*whl --out fixed
ls -la || true
test -f fixed && mv fixed dist/*whl
test -f fixed.zip && mv fixed.zip dist/*whl
twine check dist/*
python3 -m pip install "$( find dist -name '*.tar.gz' | head -1 )"[full]
Expand Down
4 changes: 2 additions & 2 deletions core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ full = [
# https://github.com/libgit2/pygit2/issues/1316
# https://github.com/fsspec/filesystem_spec/pull/1703
# build error in Python 3.13 because it requires libgit2 1.8.1 and there are no wheels
"pygit2",
"pygit2<1.15",
"fsspec",
"s3fs",
#"gcsfs", # untested
Expand All @@ -108,7 +108,7 @@ fsspec = [
# https://github.com/libgit2/pygit2/issues/1316
# https://github.com/fsspec/filesystem_spec/pull/1703
# build error in Python 3.13 because it requires libgit2 1.8.1 and there are no wheels
"pygit2",
"pygit2<1.15",
"fsspec",
"s3fs",
#"gcsfs", # untested
Expand Down

0 comments on commit 096a33e

Please sign in to comment.