Skip to content

Commit

Permalink
Fix installation by explicitly including six as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
WouldYouKindly committed Jun 11, 2021
1 parent b964a36 commit 3e78a9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [4.0.2] - 2021-06-11
### Fixed
- Wait until container's ports are available before considering it created
- Fix installation by explicitly including six as a dependency

## [4.0.0] - 2021-03-03
### Changed
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ pytest = ">=5.0"
requests = ">=2.22.0"
docker = ">=4.2.0"
typing_extensions = ">=3.7.4"
# docker==5.0 needs six but doesn't require it as a dependency
# https://github.com/docker/docker-py/issues/2842
six = ">=1.15.0"

[tool.poetry.dev-dependencies]
flake8 = ">=3.7.7"
Expand Down

0 comments on commit 3e78a9d

Please sign in to comment.