File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ before_install:
59
59
- sudo apt-get remove distro-info
60
60
# pin setuptools to try to get gpgme to build
61
61
- pip install "setuptools<66"
62
+ - if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then sudo apt-get install python-gpg; fi
63
+ - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then sudo apt-get install python3-gpg; fi
62
64
# build xapian
63
65
- echo "$TRAVIS_PYTHON_VERSION"
64
66
# Sphinx required to build the xapian python bindings. Use 1.8.5 on
@@ -105,16 +107,16 @@ before_install:
105
107
- make && make install
106
108
107
109
# gpgme
108
- - GPGME_VERSION=1.18.0
109
- - cd /tmp
110
- - curl -s -O https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-$GPGME_VERSION.tar.bz2
111
- - tar -jxf gpgme-$GPGME_VERSION.tar.bz2
112
- - cd gpgme-$GPGME_VERSION
113
- - ./configure --prefix=$VIRTUAL_ENV
114
- - make && make install
110
+ # - GPGME_VERSION=1.18.0
111
+ # - cd /tmp
112
+ # - curl -s -O https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-$GPGME_VERSION.tar.bz2
113
+ # - tar -jxf gpgme-$GPGME_VERSION.tar.bz2
114
+ # - cd gpgme-$GPGME_VERSION
115
+ # - ./configure --prefix=$VIRTUAL_ENV
116
+ # - make && make install
115
117
116
118
# change back to the checked out repository directory
117
- - cd $TRAVIS_BUILD_DIR
119
+ # - cd $TRAVIS_BUILD_DIR
118
120
119
121
install :
120
122
- if [[ $TRAVIS_PYTHON_VERSION == "3.4"* ]]; then pip install mysqlclient==1.3.14; fi
You can’t perform that action at this time.
0 commit comments