Skip to content

Commit

Permalink
Merge branch 'release-1.0.0' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucretiel committed Mar 11, 2015
2 parents ccfc6d2 + 5c64215 commit 7a8e46e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
language: python
python:
- '3.3'
- '3.4'
- '3.3'
- '3.4'
install:
- pip install -e .
- pip install coverage pytest-cov coveralls wheel pytest-pep8
- pip install -e .
- pip install pytest-cov pytest-pep8 coveralls
script:
- sh util/test.sh
- sh util/test.sh
after_success:
- coveralls
- coveralls
deploy:
provider: pypi
user: Lucretiel
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def getfile(filename):

setup(
name='autocommand',
version='0.9.6',
version='1.0.0',
py_modules=['autocommand'],
package_dir={'': 'src'},
platforms='any',
Expand All @@ -17,7 +17,7 @@ def getfile(filename):
description='A library to create a command-line program from a function',
long_description=getfile('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
Expand Down
2 changes: 1 addition & 1 deletion src/autocommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from io import IOBase


__version__ = '0.9.6'
__version__ = '1.0.0'


_empty = Parameter.empty
Expand Down
2 changes: 1 addition & 1 deletion util/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Util
====

This directory contains scripts for building, testing, and deploying autocommand.
This directory contains scripts for building, testing, and deploying autocommand.
2 changes: 1 addition & 1 deletion util/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -ex

pep8 --show-source src test
pep8 --show-source -v src test

py.test \
--cov autocommand \
Expand Down

0 comments on commit 7a8e46e

Please sign in to comment.