From 79231bec6149652a5c51eb7aa269fb7fa1df944b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Jan 2023 22:19:17 +0000 Subject: [PATCH] Bump numpy from 1.19.0 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.19.0 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/HOWTO_RELEASE.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.19.0...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2908320..2eb07e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ chardet==3.0.4 decorator==4.4.2 idna==2.10 networkx==2.4 -numpy==1.19.0 +numpy==1.22.0 pandas==1.0.5 python-dateutil==2.8.1 pytz==2020.1 diff --git a/setup.py b/setup.py index 8c43e05..7dfe14d 100644 --- a/setup.py +++ b/setup.py @@ -32,13 +32,13 @@ package_data={'thoraxe': ['subexons/assets/cluster_plots.html']}, setup_requires=['pytest-runner'], install_requires=[ - 'pandas>0.21.0,<1.5', 'biopython>1.44,<1.78', 'requests', 'numpy<1.20', + 'pandas>0.21.0,<1.5', 'biopython>1.44,<1.78', 'requests', 'numpy<1.23', 'recordclass', 'urllib3>=1.26.5', 'networkx==2.3.0', 'tabulate' ], test_suite='tests', tests_require=[ 'pytest', 'pytest-cov', 'coveralls', 'codecov', 'pytest-pylint', - 'pylint','numpy<1.20' + 'pylint','numpy<1.23' ], include_package_data=True, zip_safe=False,