Skip to content

Commit

Permalink
Remove install_requires content in the setup.py because the require d…
Browse files Browse the repository at this point in the history
…epend of what part you use.

Create version 0.1.2
  • Loading branch information
alainivars committed Jun 21, 2019
1 parent ed68003 commit f5b723a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.1'
__version__ = '0.1.2'
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ pylxd==2.2.10

# AWS
#jmespath # boto3 botocore dependency
boto3==1.9.171
boto3==1.9.173
#docutils # botocore dependency
botocore==1.12.171
botocore==1.12.173
s3transfer==0.2.1

# JUJU
Expand All @@ -33,7 +33,7 @@ s3transfer==0.2.1
#paramiko # juju dependency
#theblues # juju dependency
#websockets # juju dependency
juju==0.11.6
juju==0.11.7
#PyYAML # jujubundlelib dependency
jujubundlelib==0.5.6

Expand All @@ -58,7 +58,7 @@ recommonmark==0.5.0 # sphinx dependency to parse .md files
#MarkupSafe # Jinja2 dependency
#Jinja2 # sphinx dependency
pygments # sphinx dependency
Sphinx==2.0.0
Sphinx==2.1.2
readthedocs-sphinx-ext
#certifi # requests dependency
#chardet # requests dependency
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
'Programming Language :: Python :: 3.6',
],
install_requires=[
'boto3', # AWS
# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-init.html
'aws-sam-cli', # AWS
'pylxd', # LXD
# 'boto3', # AWS
# # https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-init.html
# 'aws-sam-cli', # AWS
# 'pylxd', # LXD
]
)
4 changes: 2 additions & 2 deletions utils2devops/tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_get_long_description_from_file(self):
path = './docs/'
filename = 'version.py'
r = get_long_description_from_file(path, filename)
self.assertEqual(r, '__version__ = \'0.1.1\'')
self.assertEqual(r, '__version__ = \'0.1.2\'')
# fault
r = get_long_description_from_file(path, 'notExist')
self.assertEqual(
Expand All @@ -23,7 +23,7 @@ def test_get_long_description_from_file(self):
def test_get_version(self):
# nominal
r = get_version('./docs/')
self.assertEqual(r, '0.1.1')
self.assertEqual(r, '0.1.2')
# fault
r = get_version('notExist')
self.assertEqual(
Expand Down

0 comments on commit f5b723a

Please sign in to comment.