Skip to content

Commit

Permalink
Add PyYAML to requirements in setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
tintoy committed Jan 9, 2018
1 parent c42abba commit 28bea6b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Expand Up @@ -2,6 +2,11 @@
History
=======

0.3.9 (2018-01-09)
------------------

* Add PyYAML as a dependency (tintoy/seqlog#6).

0.3.8 (2018-01-05)
------------------

Expand Down
2 changes: 1 addition & 1 deletion seqlog/__init__.py
Expand Up @@ -12,7 +12,7 @@

__author__ = 'Adam Friedman'
__email__ = 'tintoy@tintoy.io'
__version__ = '0.3.8'
__version__ = '0.3.9'


def configure_from_file(file_name, override_root_logger=True):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.8
current_version = 0.3.9
commit = True
tag = False

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -11,7 +11,8 @@

requirements = [
'python_dateutil>=2.5.3',
'requests>=2.10.0'
'requests>=2.10.0',
'PyYAML>=3.11',
]

test_requirements = [
Expand All @@ -31,7 +32,7 @@

setup(
name='seqlog',
version='0.3.8',
version='0.3.9',
description="SeqLog enables logging from Python to Seq.",
long_description=readme + '\n\n' + history,
author="Adam Friedman",
Expand Down

0 comments on commit 28bea6b

Please sign in to comment.