Skip to content

Commit

Permalink
Merge pull request #9 from click-contrib/v1-maint
Browse files Browse the repository at this point in the history
v1.0.2
  • Loading branch information
geowurster committed Sep 23, 2015
2 parents 469ab54 + a584887 commit b44eeff
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 11 deletions.
18 changes: 12 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
language: python

sudo: false
cache:
directories:
- ~/.cache/pip

python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3

install:
- pip install coveralls
- pip install -e .[dev]
- pip install -e .\[dev\]

script:
- py.test tests --cov click_plugins --cov-report term-missing
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

1.0.2 - 2015-09-23
------------------

- General packaging and Travis-CI improvements.
- Don't include tests in MANIFEST.in - #8


1.0.1 - 2015-08-20
------------------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
New BSD License

Copyright (c) 2015, Kevin D. Wurster
Copyright (c) 2015, Kevin D. Wurster, Sean C. Gillies
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include AUTHORS.txt
include CHANGES.txt
include CHANGES.md
include LICENSE.txt
include MANIFEST.in
include README.rst
include setup.py
2 changes: 1 addition & 1 deletion click_plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def subcommand(arg):
from click_plugins.core import with_plugins


__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = 'Kevin Wurster, Sean Gillies'
__email__ = '[email protected], [email protected]'
__source__ = 'https://github.com/click-contrib/click-plugins'
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
"""


import codecs
import os

from setuptools import find_packages
from setuptools import setup


with open('README.rst') as f:
with codecs.open('README.rst', encoding='utf-8') as f:
long_desc = f.read().strip()


Expand Down Expand Up @@ -51,7 +52,9 @@
extras_require={
'dev': [
'pytest',
'pytest-cov'
'pytest-cov',
'wheel',
'coveralls'
],
},
include_package_data=True,
Expand Down

0 comments on commit b44eeff

Please sign in to comment.