Skip to content

Commit 5c4469a

Browse files
Add missing dependencies for pyyaml and requests
1 parent e9c7699 commit 5c4469a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.7-alpine
22

3-
RUN pip install stackuchin==1.5.1
3+
RUN pip install stackuchin==1.5.2
44

55
VOLUME /project
66

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
here = path.abspath(path.dirname(__file__))
66

7-
current_version = str('1.5.1')
7+
current_version = str('1.5.2')
88

99
# Get the long description from the README file
1010
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
@@ -71,7 +71,7 @@
7171

7272
python_requires='>=3.5, <4',
7373

74-
install_requires=['simplejson', 'boto3', 'botocore'],
74+
install_requires=['simplejson', 'boto3', 'botocore', 'pyyaml', 'requests'],
7575

7676
extras_require={
7777
'test': ['coverage'],

src/stackuchin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self):
4343

4444
# noinspection PyMethodMayBeStatic
4545
def version(self):
46-
print("1.5.1")
46+
print("1.5.2")
4747

4848
# noinspection PyMethodMayBeStatic
4949
def create(self):

0 commit comments

Comments
 (0)