Skip to content

Commit 94ca597

Browse files
authored
Merge pull request #23 from LunaticMuch/fix/six-module
fix: six module missing Not sure why this wasn't necessary before, but it definitely needs it now.
2 parents 0ed2f30 + d90e2d5 commit 94ca597

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pyaml==20.4.0
2-
docker==4.4.4
2+
docker==4.4.4
3+
six==1.16.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
license = "GPLv2",
99
keywords = "docker yaml container",
1010
packages = find_packages(),
11-
install_requires = ['pyaml>=17.12.1', 'docker>=3.4.1'],
11+
install_requires = ['pyaml>=17.12.1', 'docker>=3.4.1','six>=1.16.0'],
1212
scripts = ['autocompose.py'],
1313
entry_points={
1414
'console_scripts': [

0 commit comments

Comments
 (0)