Skip to content

Commit 2f7e889

Browse files
authored
Add support for jmespath 1.0 (#3189)
1 parent c63f7c5 commit 2f7e889

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "enhancement",
3+
"category": "Dependency",
4+
"description": "Added support for jmespath 1.0"
5+
}

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
-e git+https://github.com/boto/botocore.git@develop#egg=botocore
2-
-e git+https://github.com/boto/jmespath.git@develop#egg=jmespath
2+
-e 'git+https://github.com/boto/jmespath.git@develop#egg=jmespath; python_version > "3.6"'
3+
jmespath<1.0; python_version <= '3.6'
34
-e git+https://github.com/boto/s3transfer.git@develop#egg=s3transfer

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ universal = 0
44
[metadata]
55
requires_dist =
66
botocore>=1.24.20,<1.25.0
7-
jmespath>=0.7.1,<1.0.0
7+
jmespath>=0.7.1,<2.0.0
88
s3transfer>=0.5.0,<0.6.0
99

1010
[options.extras_require]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
requires = [
1616
'botocore>=1.24.20,<1.25.0',
17-
'jmespath>=0.7.1,<1.0.0',
17+
'jmespath>=0.7.1,<2.0.0',
1818
's3transfer>=0.5.0,<0.6.0',
1919
]
2020

0 commit comments

Comments
 (0)