Skip to content

Commit fa8ea42

Browse files
authored
Merge pull request #242 from chenrui333/fix-libgit2-v1.1.0-compatibility
deps: update libgit2 to 1.4.0
2 parents 225f236 + ec18288 commit fa8ea42

File tree

6 files changed

+4
-9
lines changed

6 files changed

+4
-9
lines changed

.appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
image: Visual Studio 2019
33
environment:
44
matrix:
5-
- GENERATOR: 'Visual Studio 14'
6-
PYTHON: 'C:\Python37\python.exe'
7-
- GENERATOR: 'Visual Studio 14 Win64'
8-
PYTHON: 'C:\Python37-x64\python.exe'
95
- GENERATOR: 'Visual Studio 14'
106
PYTHON: 'C:\Python38\python.exe'
117
- GENERATOR: 'Visual Studio 14 Win64'

.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/v1.0.1 https://github.com/libgit2/libgit2.git
5+
git clone --depth=1 -b ethomson/v1.1 https://github.com/libgit2/libgit2.git
66
cd libgit2/
77

88
mkdir build && cd build

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ addons:
55
packages:
66
- snapcraft
77
python:
8-
- '3.7'
98
- '3.8'
109
- '3.9'
1110

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.2.0 # requires libgit2 1.0.x
4+
pygit2==1.4.0 # requires libgit2 1.1.x

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
packages=['gitless', 'gitless.cli'],
6767
install_requires=[
6868
# make sure install_requires is consistent with requirements.txt
69-
'pygit2==1.2.0', # requires libgit2 1.0.x
69+
'pygit2==1.4.0', # requires libgit2 1.1.x
7070
'argcomplete>=1.11.1'
7171
],
7272
license='MIT',

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ parts:
2727
libgit2:
2828
plugin: cmake
2929
# https://www.pygit2.org/install.html#version-numbers
30-
source: https://github.com/libgit2/libgit2/archive/v1.0.1.tar.gz
30+
source: https://github.com/libgit2/libgit2/archive/v1.1.0.tar.gz
3131
build-packages:
3232
- libssl-dev
3333

0 commit comments

Comments
 (0)