Skip to content

Commit

Permalink
Merge pull request #74 from Nike-Inc/fix-deprecation-dependency-in-se…
Browse files Browse the repository at this point in the history
…tuppy

Fix deprecation dependency in setup.py
  • Loading branch information
greatestusername authored Oct 3, 2018
2 parents 612ebdf + d57a6a0 commit 20a8888
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## 2.2.2 (2018-10-03)

### Fixed
* Add `deprecation` to setup.py.

## 2.2.1 (2018-10-02)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.1
current_version = 2.2.2
commit = True
tag = True

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
'click',
'email_validator',
'pyyaml',
'markdown'
'markdown',
'deprecation'
]

setup_requirements = [
Expand All @@ -42,7 +43,7 @@

setup(
name='signal_analog',
version='2.2.1',
version='2.2.2',
description='A troposphere-like library for managing SignalFx'
+ 'Charts, Dashboards, and Detectors.',
long_description=readme + '\n\n' + history,
Expand Down
2 changes: 1 addition & 1 deletion signal_analog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

__author__ = """Fernando Freire"""
__email__ = '[email protected]'
__version__ = '2.2.1'
__version__ = '2.2.2'

logging_config = pkg_resources.resource_string(
__name__, 'logging.yaml').decode('utf-8')
Expand Down

0 comments on commit 20a8888

Please sign in to comment.