Skip to content

Commit

Permalink
Merge branch 'release-0.0.9' into releases-0.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sinoroc committed Nov 18, 2020
2 parents 5b4dbb2 + ab60ac6 commit bb9a186
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@

.. Keep the current version number on line number 6
0.0.9
=====

*2020-11-18*

* Fix issue occuring when there are no 'dev' dependencies in the 'lockfile'


0.0.8
=====

Expand Down
2 changes: 1 addition & 1 deletion src/tox_poetry_dev_dependencies/_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def _add_locked_deps(
category: str,
) -> None:
#
for dep_tuple in locked_deps[category]:
for dep_tuple in locked_deps.get(category, []):
_add_locked_dep(env_config, dep_tuple)


Expand Down

0 comments on commit bb9a186

Please sign in to comment.