Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hickford committed Aug 8, 2015
1 parent 2465fc3 commit 88ef7a9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ builders/pyinstaller-1.5.1
builders/artifacts/*
dist/
build/
!build/legit/
10 changes: 4 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,14 @@ The Interface
The Installation
----------------

.. image:: https://img.shields.io/pypi/v/nine.svg
:target: https://pypi.python.org/pypi/legit/

From `PyPI <https://pypi.python.org/pypi/legit/>`_ with the Python package manager::

pip install legit

Or on Mac OS X through `homebrew <http://braumeister.org/formula/legit>`_::

brew install legit

To install the cutting edge version::
Or to install the cutting edge version::

pip install git+https://github.com/kennethreitz/legit.git@develop

Expand All @@ -84,4 +83,3 @@ Caveats

- All remote operations are carried out by the remote identified in ``$ git config legit.remote remotename``
- If a ``stash pop`` merge fails, Legit stops. I'd like to add checking for a failed merge, and undo the command with friendly error reporting.
- ``pip install`` is cumbersome to people unfamiliar with Python. Package. (Py2App + PyInstaller)
Binary file removed build/legit/legit.exe
Binary file not shown.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@
import os
import sys

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import setup


APP_NAME = 'legit'
APP_SCRIPT = './legit_r'
VERSION = '0.1.1'
VERSION = '0.2.0'


# Grab requirements.
Expand All @@ -25,7 +22,7 @@

# Publish Helper.
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
os.system('python setup.py sdist bdist_wheel upload')
sys.exit()


Expand Down

2 comments on commit 88ef7a9

@hongquan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The legit/core.py still contains version string "0.1.1"

@hickford
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops thanks I'll look out for it next time.

Please sign in to comment.