Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 81b159b

Browse files
authored
chore: Change version requirement of six to ~=1.11 (#24)
1 parent 6aa3088 commit 81b159b

File tree

4 files changed

+101
-87
lines changed

4 files changed

+101
-87
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ mock = "*"
1313
tox = "*"
1414

1515
[packages]
16-
serverlessrepo = {path = ".",extras = ["dev"],editable = true}
16+
serverlessrepo = {editable = true,extras = ["dev"],path = "."}

Pipfile.lock

Lines changed: 98 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

serverlessrepo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Serverlessrepo version and package meta-data."""
22

33
__title__ = 'serverlessrepo'
4-
__version__ = '0.1.6'
4+
__version__ = '0.1.7'
55
__license__ = 'Apache 2.0'
66
__description__ = (
77
'A Python library with convenience helpers for working '

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
REQUIRED = [
99
'pyyaml~=3.12',
1010
'boto3~=1.9, >=1.9.56',
11-
'six~=1.11.0'
11+
'six~=1.11'
1212
]
1313

1414
# Optional packages for this module to work

0 commit comments

Comments
 (0)