File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 12
12
- New optional boolean argument `connect` in `Remote.ls_remotes(...)`
13
13
[#1396](https://github.com/libgit2/pygit2/pull/1396)
14
14
15
- - Now `Remote.ls_remotes(...)` returns a list of `RemoteHead` objects
16
- [#1397](https://github.com/libgit2/pygit2/pull/1397)
17
-
18
- - Now `RemoteHead.loid` is Oid zero instead of None when not available locally
15
+ - New `Remote.list_heads(...)` returns a list of `RemoteHead` objects
19
16
[#1397](https://github.com/libgit2/pygit2/pull/1397)
17
+ [#1410](https://github.com/libgit2/pygit2/pull/1410)
20
18
21
19
- Documentation fixes
22
20
[#1388](https://github.com/libgit2/pygit2/pull/1388)
38
36
39
37
Deprecations:
40
38
41
- - Now `Remote.ls_remotes(...)` returns a list of `RemoteHead` objects
39
+ - `Remote.ls_remotes(...)` is deprecated, use `Remote.list_heads(...)`:
42
40
43
41
# Before
44
42
for head in remote.ls_remotes():
45
43
head['name']
46
44
head['oid']
47
- head['loid']
45
+ head['loid'] # None when local is False
48
46
head['local']
49
47
head['symref_target']
50
48
51
49
# Now
52
- for head in remote.ls_remotes ():
50
+ for head in remote.list_heads ():
53
51
head.name
54
52
head.oid
55
- head.loid
53
+ head.loid # The zero oid when local is False
56
54
head.local
57
55
head.symref_target
58
56
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
3
3
4
4
[tool.cibuildwheel]
5
5
enable = ["pypy"]
6
- skip = "*musllinux_aarch64 *musllinux_ppc64le"
6
+ skip = "*musllinux_aarch64 *musllinux_ppc64le cp314* "
7
7
8
8
archs = ["native"]
9
9
build-frontend = "default"
You can’t perform that action at this time.
0 commit comments