Skip to content

Commit b44eeff

Browse files
committed
Merge pull request #9 from click-contrib/v1-maint
v1.0.2
2 parents 469ab54 + a584887 commit b44eeff

File tree

6 files changed

+28
-11
lines changed

6 files changed

+28
-11
lines changed

.travis.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
language: python
22

3+
sudo: false
4+
cache:
5+
directories:
6+
- ~/.cache/pip
7+
38
python:
4-
- "2.7"
5-
- "3.3"
6-
- "3.4"
7-
- "pypy"
8-
- "pypy3"
9+
- 2.7
10+
- 3.3
11+
- 3.4
12+
- 3.5
13+
- pypy
14+
- pypy3
915

1016
install:
1117
- pip install coveralls
12-
- pip install -e .[dev]
18+
- pip install -e .\[dev\]
1319

1420
script:
1521
- py.test tests --cov click_plugins --cov-report term-missing

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
1.0.2 - 2015-09-23
5+
------------------
6+
7+
- General packaging and Travis-CI improvements.
8+
- Don't include tests in MANIFEST.in - #8
9+
10+
411
1.0.1 - 2015-08-20
512
------------------
613

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
New BSD License
22

3-
Copyright (c) 2015, Kevin D. Wurster
3+
Copyright (c) 2015, Kevin D. Wurster, Sean C. Gillies
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
include AUTHORS.txt
2-
include CHANGES.txt
2+
include CHANGES.md
33
include LICENSE.txt
44
include MANIFEST.in
55
include README.rst
6+
include setup.py

click_plugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def subcommand(arg):
2424
from click_plugins.core import with_plugins
2525

2626

27-
__version__ = '1.0.1'
27+
__version__ = '1.0.2'
2828
__author__ = 'Kevin Wurster, Sean Gillies'
2929
3030
__source__ = 'https://github.com/click-contrib/click-plugins'

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
"""
77

88

9+
import codecs
910
import os
1011

1112
from setuptools import find_packages
1213
from setuptools import setup
1314

1415

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

1819

@@ -51,7 +52,9 @@
5152
extras_require={
5253
'dev': [
5354
'pytest',
54-
'pytest-cov'
55+
'pytest-cov',
56+
'wheel',
57+
'coveralls'
5558
],
5659
},
5760
include_package_data=True,

0 commit comments

Comments
 (0)