diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index dc02956df..d43890b44 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -54,7 +54,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl diff --git a/README.rst b/README.rst index cf2fc9885..39b0dfd4a 100644 --- a/README.rst +++ b/README.rst @@ -174,7 +174,7 @@ Python Packages --------------- * prettytable >= 2.5.0 * click >= 8.0.4 -* requests >= 2.20.0 +* requests >= 2.32.2 * prompt_toolkit >= 2 * pygments >= 2.0.0 * urllib3 >= 1.24 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 02cc3352e..0b20929f6 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v6.2.3' +VERSION = 'v6.2.4' API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/' API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/' API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/' diff --git a/docs/requirements.txt b/docs/requirements.txt index 36adedad3..0dffff663 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -sphinx==7.4.4 +sphinx==8.0.0 sphinx_rtd_theme==2.0.0 sphinx-click==6.0.0 click diff --git a/setup.py b/setup.py index fd008d57f..b930bb8ad 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='SoftLayer', - version='v6.2.3', + version='v6.2.4', description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/x-rst', @@ -34,7 +34,7 @@ install_requires=[ 'prettytable >= 2.5.0', 'click >= 8.0.4', - 'requests >= 2.20.0', + 'requests >= 2.32.2', 'prompt_toolkit >= 2', 'pygments >= 2.0.0', 'urllib3 >= 1.24', diff --git a/tools/requirements.txt b/tools/requirements.txt index 66abd689c..68582aec9 100644 --- a/tools/requirements.txt +++ b/tools/requirements.txt @@ -1,6 +1,6 @@ prettytable >= 2.5.0 click >= 8.0.4 -requests >= 2.20.0 +requests >= 2.32.2 prompt_toolkit >= 2 pygments >= 2.0.0 urllib3 >= 1.24 diff --git a/tools/test-requirements.txt b/tools/test-requirements.txt index 6b546ccf3..e40183675 100644 --- a/tools/test-requirements.txt +++ b/tools/test-requirements.txt @@ -6,7 +6,7 @@ mock sphinx prettytable >= 2.5.0 click >= 8.0.4 -requests >= 2.20.0 +requests >= 2.32.2 prompt_toolkit >= 2 pygments >= 2.0.0 urllib3 >= 1.24