Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ updates:
actions:
patterns:
- "*"
# - package-ecosystem: pip
# directory: .github/
# schedule:
# interval: "monthly"
# groups:
# pip:
# patterns:
# - "*"
- package-ecosystem: pip
directory: .github/
schedule:
interval: "monthly"
groups:
pip:
patterns:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
platforms: linux/ppc64le

- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=3.3
run: python -m pip install -r requirements-wheel.txt

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ if [ "$1" = "mypy" ]; then
if [ -n "$WHEELDIR" ]; then
$PREFIX/bin/pip install $WHEELDIR/pygit2*-$PYTHON_TAG-*.whl
fi
$PREFIX/bin/pip install -r requirements-test.txt
$PREFIX/bin/pip install -r requirements-test.txt -r requirements-typing.txt
$PREFIX/bin/mypy pygit2 test
fi

Expand Down
2 changes: 0 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
pytest
pytest-cov
mypy
types-cffi
2 changes: 2 additions & 0 deletions requirements-typing.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mypy
types-cffi
1 change: 1 addition & 0 deletions requirements-wheel.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cibuildwheel ~= 3.3
Loading