Skip to content

Commit

Permalink
Fixing Python 3.10 wheels for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavid committed Oct 7, 2021
1 parent 3039611 commit 8b25be3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
include:
- os: ubuntu-20.04
python-version: 3.6
- os: ubuntu-20.04
python-version: 3.9
- os: ubuntu-20.04
python-version: '3.10'
- os: ubuntu-20.04
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
- ver: '3.7'
release: '3.7.9' # last Python.org binary release
- ver: '3.8'
release: '3.8.7'
release: '3.8.10' # last Python.org binary release
- ver: '3.9'
release: '3.9.1'
release: '3.9.7'
- ver: '3.10'
release: '3.10.0'
steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

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

- Add support for Python 3.10
`#1092 <https://github.com/libgit2/pygit2/pull/1092>`_
`#1093 <https://github.com/libgit2/pygit2/pull/1093>`_

- New `pygit2.GIT_CHECKOUT_SKIP_LOCKED_DIRECTORIES`
`#1087 <https://github.com/libgit2/pygit2/pull/1087>`_

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ fi
# Tests
if [ "$1" = "test" ]; then
if [ -n "$WHEELDIR" ]; then
$PREFIX/bin/pip install $WHEELDIR/pygit2*-$PYTHON_TAG-*_$ARCH.whl
$PREFIX/bin/pip install $WHEELDIR/pygit2*-$PYTHON_TAG-*.whl
fi
$PREFIX/bin/pip install -r requirements-test.txt
$PREFIX/bin/pytest --cov=pygit2
Expand Down

0 comments on commit 8b25be3

Please sign in to comment.