Skip to content

Commit 9d1e289

Browse files
committed
prep for 0.8.7 and bump py/libgit2 to 0.27
1 parent 0eaf72e commit 9d1e289

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.travis.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd ~
44

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

88
mkdir build && cd build

gitless/cli/gl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
INTERNAL_ERROR = 3
3535
NOT_IN_GL_REPO = 4
3636

37-
__version__ = '0.8.6'
37+
__version__ = '0.8.7'
3838
URL = 'http://gitless.com'
3939

4040

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# make sure to update setup.py
22

3-
pygit2==0.26.4 # requires libgit2 0.26
3+
pygit2==0.27.4 # requires libgit2 0.27
44
clint==0.5.1
55
sh==1.12.14;sys_platform!='win32'
66
pbs==0.110;sys_platform=='win32'

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
print('creating tar.gz file')
3636
shutil.copy('README.md', rel)
3737
shutil.copy('LICENSE.md', rel)
38-
38+
3939
with tarfile.open(rel + '.tar.gz', 'w:gz') as tar:
4040
tar.add(rel)
4141
print('success!! binary release at {0}'.format(rel + '.tar.gz'))
@@ -67,21 +67,21 @@
6767
url='http://gitless.com',
6868
packages=['gitless', 'gitless.cli'],
6969
install_requires=[
70-
# make sure it matches requirements.txt
71-
'pygit2==0.26.4', # requires libgit2 0.26
70+
# make sure it matches requirements.txt
71+
'pygit2==0.27.4', # requires libgit2 0.27
7272
'clint>=0.3.6',
7373
'sh>=1.11' if sys.platform != 'win32' else 'pbs>=0.11'
7474
],
7575
license='MIT',
76-
classifiers=(
76+
classifiers=[
7777
'Development Status :: 2 - Pre-Alpha',
7878
'Intended Audience :: Developers',
7979
'License :: OSI Approved :: MIT License',
8080
'Natural Language :: English',
8181
'Programming Language :: Python',
8282
'Programming Language :: Python :: 2',
8383
'Programming Language :: Python :: 3',
84-
'Topic :: Software Development :: Version Control'),
84+
'Topic :: Software Development :: Version Control'],
8585
entry_points={
8686
'console_scripts': [
8787
'gl = gitless.cli.gl:main'

snap/snapcraft.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ parts:
2828
libgit2:
2929
plugin: cmake
3030
# https://www.pygit2.org/install.html#version-numbers
31-
source: https://github.com/libgit2/libgit2/archive/v0.26.8.tar.gz
31+
source: https://github.com/libgit2/libgit2/archive/v0.27.8.tar.gz
3232
build-packages:
3333
- libssl-dev
3434

@@ -41,4 +41,3 @@ parts:
4141
- git
4242
build-packages:
4343
- git
44-

0 commit comments

Comments
 (0)