From 80e6814de0fc3ddf39ec08389f95dcaf3cf1cac1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 May 2023 21:19:29 +0000 Subject: [PATCH] Bump flask from 1.1.1 to 2.3.2 Bumps [flask](https://github.com/pallets/flask) from 1.1.1 to 2.3.2. - [Release notes](https://github.com/pallets/flask/releases) - [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/flask/compare/1.1.1...2.3.2) --- updated-dependencies: - dependency-name: flask dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt old mode 100755 new mode 100644 index 3811b3f..fd56c97 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Flask==1.1.1 +Flask==2.3.2 numpy>=1.16.4 pandas>=0.25.3 matplotlib==3.1.0 diff --git a/setup.py b/setup.py index 673b49f..f8d6b1f 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ name = "minvime", packages = ["minvime"], license = "MIT", - install_requires = ['pandas>=0.25.3', 'numpy>=1.16.4', 'Flask==1.1.1', 'matplotlib==3.1.0'], + install_requires = ['pandas>=0.25.3', 'numpy>=1.16.4', 'Flask==2.3.2', 'matplotlib==3.1.0'], entry_points = { "console_scripts": ['minvime = minvime.minvime:main'] },