Created
February 2, 2011 01:52
-
-
Save adamvr/807106 to your computer and use it in GitHub Desktop.
This patch corrects the required SIP version number in pygit's configure.py
This file contains hidden or 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
| # Changing the version number | |
| diff --git a/configure.py b/configure.py | |
| index 7ed9582..53bd3ad 100644 | |
| --- a/configure.py | |
| +++ b/configure.py | |
| @@ -41,7 +41,7 @@ import sipconfig | |
| pyqt_version = 0x040803 | |
| pyqt_version_str = "4.8.3" | |
| -sip_min_version = 0x040c01 | |
| +sip_min_version = 0x040c00 | |
| qt_version = 0 | |
| qt_edition = "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment