Skip to content

Commit

Permalink
Trying to strictly require things from dcicutils
Browse files Browse the repository at this point in the history
  • Loading branch information
carlvitzthum committed Jul 19, 2018
1 parent fefea9d commit 0a18f98
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include requirements.txt
include README.md
# "graft" includes all files recursively
graft dcicutils
2 changes: 1 addition & 1 deletion dcicutils/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.3.6"
__version__ = "0.03.6"
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
awscli==1.15.42
boto3==1.7.42
botocore==1.10.42
elasticsearch>=5.3.0,<6.0.0
aws_requests_auth
elasticsearch==5.5.2
aws_requests_auth==0.4.1
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()

requires = [
'pytest-runner',
'boto3==1.7.42',
'botocore==1.10.42',
'elasticsearch>=5.3.0,<6.0.0',
'aws_requests_auth'
]

# we want strict package requirements on install
with open('requirements.txt') as f:
requires = f.read().splitlines()
requires = [req.strip() for req in requires]

tests_require = [
'pytest',
'pytest-runner',
'pytest-mock',
'pytest-cov',
]
Expand Down

0 comments on commit 0a18f98

Please sign in to comment.