From f8ab121ac3c3775923f44412d7717bb6f1bfa298 Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Wed, 22 May 2024 10:27:24 -0700 Subject: [PATCH] Bump requests to 2.32.x (#600) * Bump requests to 2.32.x * update changelog --- ChangeLog.md | 3 ++- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 50fe9d04..6ae4d0c9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -9,7 +9,8 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Added KMS encryption support to NeptuneDB Notebook CloudFormation template ([Link to PR](https://github.com/aws/graph-notebook/pull/590)) - Added warnings for usage of `%%oc` with incompatible Neptune Analytics parameters ([Link to PR](https://github.com/aws/graph-notebook/pull/599)) - Improved handling of mixed type Gremlin results ([Link to PR](https://github.com/aws/graph-notebook/pull/592)) -- Updated to `rdflib==7.0.0` and `SPARQLWrapper==2.0.0` ([Link to PR](https://github.com/aws/graph-notebook/pull/596)) +- Upgraded `rdflib` to 7.0.0 and `SPARQLWrapper` to 2.0.0 ([Link to PR](https://github.com/aws/graph-notebook/pull/596)) +- Upgraded `requests` to 2.32.x ([Link to PR](https://github.com/aws/graph-notebook/pull/600)) - Fixed formatting of query magic `--help` entries listing valid inputs ([Link to PR](https://github.com/aws/graph-notebook/pull/593)) - Fixed endpoint creation bug in People-Analytics-using-Neptune-ML sample ([Link to PR](https://github.com/aws/graph-notebook/pull/595)) - Fixed deprecated usage of Pandas `DataFrameGroupBy.mean` in NeptuneML SPARQL utils ([Link to PR](https://github.com/aws/graph-notebook/pull/596)) diff --git a/requirements.txt b/requirements.txt index 62f1f3f7..ade91972 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ nbclient<=0.7.0 jupyter-contrib-nbextensions<=0.7.0 widgetsnbextension<=3.6.1 gremlinpython>=3.5.1,<=3.6.2 -requests>=2.27.0,<=2.31.0 +requests>=2.32.0,<=2.32.2 ipython>=7.16.1,<=8.10.0 ipykernel==5.3.4 ipyfilechooser==0.6.0 diff --git a/setup.py b/setup.py index eb505971..ea431d9a 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def get_version(): install_requires=[ 'gremlinpython>=3.5.1,<=3.6.2', 'SPARQLWrapper==2.0.0', - 'requests>=2.27.0,<=2.31.0', + 'requests>=2.32.0,<=2.32.2', 'ipywidgets==7.7.2', 'jupyterlab_widgets>=1.0.0,<3.0.0', 'networkx==2.4',