Skip to content

Commit

Permalink
Release 2.13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
IBMalok authored and GitHub Enterprise committed Jul 12, 2024
1 parent bd37fda commit c35f5f1
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 2.13.6

### Content

#### Defect Fixes

* Internal fixes and improvements

## 2.13.5

### Content
Expand Down
2 changes: 1 addition & 1 deletion ibm_botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import re

__author__ = 'IBM'
__version__ = '2.13.5'
__version__ = '2.13.6'


class NullHandler(logging.Handler):
Expand Down
12 changes: 4 additions & 8 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
# Sphinx does not have an upper bound pin on jinja2, and jinja2 does
# not have an upper bound pin on markupsafe. Since jinja2 and markupsafe
# removed python 3.5 support we need to add our own pins.
markupsafe>=2.0,<2.2
jinja2>=3.1.4,<3.2
# docutils needs a pin until we update to Sphinx > 3.0
docutils>=0.10,<0.21.3
markupsafe>=2.0,<3
jinja2>=3.1.4,<4
docutils>=0.10,<1
Sphinx==5.3.0
guzzle_sphinx_theme>=0.7.11,<0.8
guzzle_sphinx_theme>=0.7.11,<1
furo==2022.12.7
sphinx_copybutton==0.5.2
sphinx-remove-toctrees==0.0.3
7 changes: 3 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ universal = 0
requires_dist =
jmespath>=0.10.0,<=1.0.1
python-dateutil>=2.9.0,<3.0.0
requests>=2.32.3,<3.0
urllib3>=1.26.18,<1.27 ; python_version < "3.10"
urllib3>=1.26.18,<2.2 ; python_version >= "3.10"
requests>=2.32.0,<2.32.3
urllib3>=1.26.18,<3

[flake8]
ignore = E203,E226,E501,E731,W503,W504
ignore = E203,E226,E501,E731,W503,W504
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
requires = [
'jmespath>=0.10.0,<=1.0.1',
'python-dateutil>=2.9.0,<3.0.0',
'requests>=2.32.3,<3.0',
'urllib3>=1.26.18,<1.27 ; python_version < "3.10"',
'urllib3>=1.26.18,<2.2 ; python_version >= "3.10"'
'requests>=2.32.0,<2.32.3',
'urllib3>=1.26.18,<3',
]

setup(
Expand Down

0 comments on commit c35f5f1

Please sign in to comment.