File tree 5 files changed +10
-7
lines changed
5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Note that the installation **won't interfere** with your Git installation in any
25
25
way, you can keep using Git, and switch between Git and Gitless seamlessly.
26
26
27
27
We currently require Git (1.7.12+) to be installed (but this requirement is
28
- going to disappear soon once we finish with our migration to pygit2).
28
+ going to disappear soon once we finish with our migration to [ pygit2] ( https://github.com/libgit2/pygit2 ) ).
29
29
30
30
31
31
### Binary releases (macOS and Linux only)
Original file line number Diff line number Diff line change 17
17
def parser (subparsers , _ ):
18
18
"""Adds the init parser to the given subparsers object."""
19
19
desc = (
20
- 'create an empty Gitless\' s repository or create one from an existing '
21
- 'remote repository' )
20
+ 'create an empty git repository or clone remote' )
22
21
init_parser = subparsers .add_parser (
23
22
'init' , help = desc , description = desc .capitalize ())
24
23
init_parser .add_argument (
Original file line number Diff line number Diff line change
1
+ # make sure to update setup.py
2
+
1
3
pygit2 == 0.26.4 # requires libgit2 0.26
2
4
clint == 0.5.1
3
5
sh == 1.12.14 ;sys_platform != 'win32'
Original file line number Diff line number Diff line change 67
67
url = 'http://gitless.com' ,
68
68
packages = ['gitless' , 'gitless.cli' ],
69
69
install_requires = [
70
- 'pygit2>=0.24.0' ,
71
- 'clint>=0.3.6' ,
72
- 'sh>=1.11' if sys .platform != 'win32' else 'pbs>=0.11'
70
+ # make sure it matches requirements.txt
71
+ 'pygit2==0.26.4' , # requires libgit2 0.26
72
+ 'clint==0.5.1' ,
73
+ 'sh==1.12.14' if sys .platform != 'win32' else 'pbs==0.110'
73
74
],
74
75
license = 'MIT' ,
75
76
classifiers = (
Original file line number Diff line number Diff line change 27
27
parts :
28
28
libgit2 :
29
29
plugin : cmake
30
- source : https://github.com/libgit2/libgit2/archive/v0.27.0.tar.gz
30
+ # https://www.pygit2.org/install.html#version-numbers
31
+ source : https://github.com/libgit2/libgit2/archive/v0.26.8.tar.gz
31
32
build-packages :
32
33
- libssl-dev
33
34
You can’t perform that action at this time.
0 commit comments