This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Allow multiple hooks. | |
# | |
# To use it copy this script with executable permission in ".git/hooks/hook-name" | |
# where hook-name is the name of the hook (see man githooks to know available hooks). | |
# Then place your scripts with executable permission in ".git/hooks/hook-name.d/". | |
hook_type=${BASH_SOURCE##*/} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/cgo.go b/lib/cgo.go | |
index 8627e61..4c442d1 100644 | |
--- a/lib/cgo.go | |
+++ b/lib/cgo.go | |
@@ -1,4 +1,4 @@ | |
package py | |
-// #cgo pkg-config: python-3.3 | |
+// #cgo pkg-config: python-3.4 | |
import "C" |