Skip to content

Commit

Permalink
Add missing dependencies for pyyaml and requests
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusmitrofan committed Aug 31, 2020
1 parent e9c7699 commit 5c4469a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.7-alpine

RUN pip install stackuchin==1.5.1
RUN pip install stackuchin==1.5.2

VOLUME /project

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

current_version = str('1.5.1')
current_version = str('1.5.2')

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

python_requires='>=3.5, <4',

install_requires=['simplejson', 'boto3', 'botocore'],
install_requires=['simplejson', 'boto3', 'botocore', 'pyyaml', 'requests'],

extras_require={
'test': ['coverage'],
Expand Down
2 changes: 1 addition & 1 deletion src/stackuchin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self):

# noinspection PyMethodMayBeStatic
def version(self):
print("1.5.1")
print("1.5.2")

# noinspection PyMethodMayBeStatic
def create(self):
Expand Down

0 comments on commit 5c4469a

Please sign in to comment.