Skip to content

Commit 8b25be3

Browse files
committed
Fixing Python 3.10 wheels for macos
1 parent 3039611 commit 8b25be3

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
include:
1313
- os: ubuntu-20.04
1414
python-version: 3.6
15-
- os: ubuntu-20.04
16-
python-version: 3.9
1715
- os: ubuntu-20.04
1816
python-version: '3.10'
1917
- os: ubuntu-20.04

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
- ver: '3.7'
4747
release: '3.7.9' # last Python.org binary release
4848
- ver: '3.8'
49-
release: '3.8.7'
49+
release: '3.8.10' # last Python.org binary release
5050
- ver: '3.9'
51-
release: '3.9.1'
51+
release: '3.9.7'
5252
- ver: '3.10'
5353
release: '3.10.0'
5454
steps:

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Linux wheels now bundled with libssh2 1.10.0 (instead of 1.9.0)
88

9+
- Add support for Python 3.10
10+
`#1092 <https://github.com/libgit2/pygit2/pull/1092>`_
11+
`#1093 <https://github.com/libgit2/pygit2/pull/1093>`_
12+
913
- New `pygit2.GIT_CHECKOUT_SKIP_LOCKED_DIRECTORIES`
1014
`#1087 <https://github.com/libgit2/pygit2/pull/1087>`_
1115

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ fi
145145
# Tests
146146
if [ "$1" = "test" ]; then
147147
if [ -n "$WHEELDIR" ]; then
148-
$PREFIX/bin/pip install $WHEELDIR/pygit2*-$PYTHON_TAG-*_$ARCH.whl
148+
$PREFIX/bin/pip install $WHEELDIR/pygit2*-$PYTHON_TAG-*.whl
149149
fi
150150
$PREFIX/bin/pip install -r requirements-test.txt
151151
$PREFIX/bin/pytest --cov=pygit2

0 commit comments

Comments
 (0)