Skip to content

Commit 290c16e

Browse files
author
Mark Brenig-Jones
committed
Create master27 branch for publishing the Python2.7 version... one-day I'll update master branch to be python3 compatible
1 parent 110e10c commit 290c16e

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ mysecrets.bat
66
htmlcov
77
.tox
88
SheetSync.egg-info
9+
sheetsync2.egg-info
910
build
1011
dist
1112
MANIFEST

README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
SheetSync
2-
=========
1+
SheetSync2
2+
==========
33

44
|Build Status|
55

6-
A python library to create, update and delete rows of data in a google spreadsheet. `Click here to read the full documentation <http://sheetsync.readthedocs.org/>`_.
6+
A `python 2.7 <https://www.python.org/download/releases/2.7/>`_ library to create, update and delete rows of data in a google spreadsheet. `Click here to read the full documentation <http://sheetsync.readthedocs.org/>`_.
77

88
Installation
99
------------
1010
Install from PyPi using `pip <http://www.pip-installer.org/en/latest/>`_::
1111

12-
pip install sheetsync
12+
pip install sheetsync2
1313

1414
Or you can clone the git repo and install from the code::
1515

16-
git clone [email protected]:mbrenig/sheetsync.git LocalSheetSync
16+
git clone -b master27 [email protected]:mbrenig/sheetsync.git LocalSheetSync
1717
pip install LocalSheetSync
1818

1919
Note, you may need to run the commands above with ``sudo``.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
requirements = [line.strip() for line in fh.readlines()]
1111

1212
setup(
13-
name='sheetsync',
13+
name='sheetsync2',
1414
version=__version__,
15-
description="Synchronize rows of data with a google spreadsheet",
15+
description="Synchronize rows of data with a google spreadsheet (Python2.7 version)",
1616
long_description=long_description,
1717
author='Mark Brenig-Jones',
1818
author_email='[email protected]',

sheetsync/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Single place version should be set.
2-
__version__ = '0.2.3'
2+
__version__ = '0.2.5'

0 commit comments

Comments
 (0)