Skip to content

Commit e8a9f7f

Browse files
author
Chris Park
committed
Missing required "requests" package
1 parent a6368c5 commit e8a9f7f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

examples/docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM python:2.7.11
22
MAINTAINER Fiona Hasanaj
3+
ENV MAINTENANCE_DATE 03.28.2016
34

45
# install necessary software
56
RUN apt-get -y update && apt-get install -y vim && apt-get install -y git && pip install rosette_api
@@ -11,4 +12,4 @@ WORKDIR /python/examples
1112
# allow interactive bash inside docker container
1213
CMD ./run_python.sh $API_KEY $FILENAME $ALT_URL
1314

14-
VOLUME ["/source"]
15+
VOLUME ["/source"]

rosette/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
limitations under the License.
1717
"""
1818

19-
__version__ = '1.0'
19+
__version__ = '1.0.1'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def read(*filenames, **kwargs):
3232
license='Apache License',
3333
long_description=long_description,
3434
packages=['rosette'],
35+
install_requires=['requests'],
3536
platforms='any',
3637
url=HOMEPAGE,
3738
version=VERSION,

0 commit comments

Comments
 (0)