Skip to content

Commit c35f5f1

Browse files
IBMalokGitHub Enterprise
authored andcommitted
Release 2.13.6
1 parent bd37fda commit c35f5f1

File tree

5 files changed

+18
-16
lines changed

5 files changed

+18
-16
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## 2.13.6
4+
5+
### Content
6+
7+
#### Defect Fixes
8+
9+
* Internal fixes and improvements
10+
311
## 2.13.5
412

513
### Content

ibm_botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re
1818

1919
__author__ = 'IBM'
20-
__version__ = '2.13.5'
20+
__version__ = '2.13.6'
2121

2222

2323
class NullHandler(logging.Handler):

requirements-docs.txt

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
1-
# Sphinx does not have an upper bound pin on jinja2, and jinja2 does
2-
# not have an upper bound pin on markupsafe. Since jinja2 and markupsafe
3-
# removed python 3.5 support we need to add our own pins.
4-
markupsafe>=2.0,<2.2
5-
jinja2>=3.1.4,<3.2
6-
# docutils needs a pin until we update to Sphinx > 3.0
7-
docutils>=0.10,<0.21.3
1+
markupsafe>=2.0,<3
2+
jinja2>=3.1.4,<4
3+
docutils>=0.10,<1
84
Sphinx==5.3.0
9-
guzzle_sphinx_theme>=0.7.11,<0.8
5+
guzzle_sphinx_theme>=0.7.11,<1
106
furo==2022.12.7
117
sphinx_copybutton==0.5.2
128
sphinx-remove-toctrees==0.0.3

setup.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ universal = 0
55
requires_dist =
66
jmespath>=0.10.0,<=1.0.1
77
python-dateutil>=2.9.0,<3.0.0
8-
requests>=2.32.3,<3.0
9-
urllib3>=1.26.18,<1.27 ; python_version < "3.10"
10-
urllib3>=1.26.18,<2.2 ; python_version >= "3.10"
8+
requests>=2.32.0,<2.32.3
9+
urllib3>=1.26.18,<3
1110

1211
[flake8]
13-
ignore = E203,E226,E501,E731,W503,W504
12+
ignore = E203,E226,E501,E731,W503,W504

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
requires = [
77
'jmespath>=0.10.0,<=1.0.1',
88
'python-dateutil>=2.9.0,<3.0.0',
9-
'requests>=2.32.3,<3.0',
10-
'urllib3>=1.26.18,<1.27 ; python_version < "3.10"',
11-
'urllib3>=1.26.18,<2.2 ; python_version >= "3.10"'
9+
'requests>=2.32.0,<2.32.3',
10+
'urllib3>=1.26.18,<3',
1211
]
1312

1413
setup(

0 commit comments

Comments
 (0)