Skip to content

Commit c099484

Browse files
committed
bump libgit2/pygit2 versions
let's see if this fixes the snap build
1 parent d3cbce2 commit c099484

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd ~
44

5-
git clone --depth=1 -b maint/v0.99 https://github.com/libgit2/libgit2.git
5+
git clone --depth=1 -b maint/v1.0.1 https://github.com/libgit2/libgit2.git
66
cd libgit2/
77

88
mkdir build && cd build

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# make sure to update setup.py if you make any changes to this file
22

33
argcomplete>=1.11.1
4-
pygit2==1.1.1 # requires libgit2 0.99 or 1.0
4+
pygit2==1.2.0 # requires libgit2 1.0.x

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
url='http://gitless.com',
6969
packages=['gitless', 'gitless.cli'],
7070
install_requires=[
71-
# make sure it matches requirements.txt
72-
'pygit2==1.1.1', # requires libgit2 0.99 or 1.0
71+
# make sure install_requires is consistent with requirements.txt
72+
'pygit2==1.2.0', # requires libgit2 1.0.x
7373
'argcomplete>=1.11.1'
7474
],
7575
license='MIT',

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ parts:
2929
libgit2:
3030
plugin: cmake
3131
# https://www.pygit2.org/install.html#version-numbers
32-
source: https://github.com/libgit2/libgit2/archive/v0.99.0.tar.gz
32+
source: https://github.com/libgit2/libgit2/archive/v1.0.1.tar.gz
3333
build-packages:
3434
- libssl-dev
3535

0 commit comments

Comments
 (0)