Skip to content

Commit

Permalink
Release v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
iky committed May 9, 2019
1 parent e46ec60 commit 5dadcd9
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 24 deletions.
47 changes: 27 additions & 20 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v1.3.0
hooks:
- id: trailing-whitespace
- id: check-ast
- id: check-merge-conflict
- id: fix-encoding-pragma
- id: flake8
- repo: https://github.com/asottile/seed-isort-config
rev: v1.8.0
hooks:
- id: seed-isort-config
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.17
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 19.3b0
hooks:
- id: black
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v1.3.0
hooks:
- id: trailing-whitespace
- id: check-ast
- id: check-merge-conflict
- id: flake8
- repo: https://github.com/asottile/seed-isort-config
rev: v1.8.0
hooks:
- id: seed-isort-config
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.17
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 19.3b0
hooks:
- id: black
- repo: local
hooks:
- id: pylint
name: pylint
entry: python -m pylint.__main__ --disable=R,C,unused-argument
language: system
files: ^nameko_slack/
types: [python]
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Release Notes
=============

Version 0.0.6
-------------

Released 2019-10-09

* Temporarily lock compatibility with slack-client to < 2


Version 0.0.5
-------------

Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,15 @@

setup(
name="nameko-slack",
version="0.0.5",
version="0.0.6",
description="Nameko extension for interaction with Slack APIs",
long_description=open("README.rst").read(),
author="Ondrej Kohout",
author_email="ondrej.kohout@gmail.com",
url="http://github.com/iky/nameko-slack",
packages=find_packages(exclude=["test", "test.*"]),
install_requires=["nameko>=2.7.0", "slackclient>=1.0.4,<2"],
extras_require={
"dev": ["coverage", "flake8", "isort", "pre-commit", "pylint", "pytest"]
},
extras_require={"dev": ["coverage", "pre-commit", "pylint", "pytest"]},
dependency_links=[],
zip_safe=True,
license="Apache License, Version 2.0",
Expand Down

0 comments on commit 5dadcd9

Please sign in to comment.