Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shortdudey123 committed Jun 4, 2015
1 parent eb22ffa commit 5c4198b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
---------------

0.0.3 (2015-06-03)
^^^^^^^^^^^^^^^^^^

- Fix dependencies

0.0.2 (2015-06-03)
^^^^^^^^^^^^^^^^^^

Expand Down
5 changes: 5 additions & 0 deletions docs/source/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
---------------

0.0.3 (2015-06-03)
^^^^^^^^^^^^^^^^^^

- Fix dependencies

0.0.2 (2015-06-03)
^^^^^^^^^^^^^^^^^^

Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Babel==1.3
docutils==0.12
Jinja2==2.7.3
MarkupSafe==0.23
pockets==0.2.4
Pygments==2.0.2
pytz==2015.4
PyYAML==3.11
requests==2.7.0
six==1.9.0
snowballstemmer==1.2.0
Sphinx==1.3.1
Sphinx-PyPI-upload==0.2.1
Sphinx==1.2.3
sphinx-rtd-theme==0.1.8
sphinxcontrib-napoleon==0.3.6
2 changes: 1 addition & 1 deletion scout_api/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 0, 2)
version_info = (0, 0, 3)
__version__ = '.'.join(str(v) for v in version_info)
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
__version__ = version.__version__


def read(*paths):
def read(filename):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
with open(os.path.join(os.path.dirname(__file__), filename), 'r') as f:
return f.read()

setup(
Expand Down Expand Up @@ -43,5 +43,7 @@ def read(*paths):
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['requests']
install_requires=[
'requests',
]
)

0 comments on commit 5c4198b

Please sign in to comment.