使用 pygi2 推送时签名错误

An error in signature when pushing using pygi2

我在使用 pygit2 v0.21.3 推送时遇到问题。 这是我的代码:

import pygit2 as git
repo = git.Repository("path/to/my/repo.git") # just for testing,it will not be local

for rem in repo.remotes:
    rem.push_url = rem.url
    rem.credentials = git.UserPass("user","passowrd")
    sig = git.Signature("user","user@example.com")

    rem.push('refs/heads/master',signature=sig)
    # in v0.22.0 it will be like below
    # rem.push(['refs/heads/master'],signature=sig)

但是,我总是收到这条消息:

Traceback (most recent call last):
  File "C:\test.py", line 9, in <module>
    rem.push('refs/heads/master',signature=sig)
  File "C:\Python34\lib\site-packages\pygit2-0.21.3-py3.4-win32.egg\pygit2\remote.py",line 353, in push
    err = C.git_push_update_tips(push, ptr, to_bytes(message))
TypeError: initializer for ctype 'git_signature *' must be a cdata pointer, not bytes

当我尝试使用版本 0.22.0 时,它没有引发错误,但推送操作也不起作用。

注意:我认为签名参数有问题,因为当我传递None时,默认签名可以正常工作。

谢谢。

我已将 pygit2 更新为 v0.22.1,将 libgit2 更新为 v0.22.3,它解决了问题。