Skip to content

Commit

Permalink
Merge 99f7a8f into 3fb1c37
Browse files Browse the repository at this point in the history
  • Loading branch information
geowurster committed Apr 4, 2019
2 parents 3fb1c37 + 99f7a8f commit f188115
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .travis.yml
Expand Up @@ -11,9 +11,17 @@ python:
- 3.6
- 3.7

env:
matrix:
- CLICK_VERSION=4.1
- CLICK_VERSION=5.1
- CLICK_VERSION=6.7
- CLICK_VERSION=7

install:
- pip install coveralls
- pip install -e .\[dev\]
- pip install -e ".[dev]"
- pip install "click==${CLICK_VERSION}"

script:
- pytest tests --cov click_plugins --cov-report term-missing
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -5,6 +5,8 @@ Changelog
------------------

- Fix an issue where a broken command's traceback would not be emitted - https://github.com/click-contrib/click-plugins/issues/25
- Bump required click version to `click>=4` - https://github.com/click-contrib/click-plugins/pull/28
- Runs Travis tests for the latest release of click versions 4 -> 7 - https://github.com/click-contrib/click-plugins/pull/28

1.0.4 - 2018-09-15
------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -58,7 +58,7 @@
],
},
include_package_data=True,
install_requires=['click>=3.0'],
install_requires=['click>=4.0'],
keywords='click plugin setuptools entry-point',
license="New BSD",
long_description=long_desc,
Expand Down

0 comments on commit f188115

Please sign in to comment.