We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0328605 commit e002614Copy full SHA for e002614
travis/build-manylinux1-wheels.sh
@@ -252,9 +252,9 @@ for PY in $PYTHONS; do
252
$PY_BIN -B -c '
253
import pygit2
254
print("libgit2 version: %s" % pygit2.LIBGIT2_VERSION)
255
-print("pygit2 supports threads: %s" % str(bool(pygit2.GIT_FEATURE_THREADS)))
256
-print("pygit2 supports HTTPS: %s" % str(bool(pygit2.GIT_FEATURE_THREADS)))
257
-print("pygit2 supports SSH: %s" % str(bool(pygit2.GIT_FEATURE_THREADS)))
+print("pygit2 supports threads: %s" % str(bool(pygit2.features & pygit2.GIT_FEATURE_THREADS)))
+print("pygit2 supports HTTPS: %s" % str(bool(pygit2.features & pygit2.GIT_FEATURE_HTTPS)))
+print("pygit2 supports SSH: %s" % str(bool(pygit2.features & pygit2.GIT_FEATURE_SSH)))
258
print("")
259
'
260
done
0 commit comments