From 87b07d69e118cb080687c4c6e1a4477ade726a3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 07:52:17 +0000 Subject: [PATCH 1/3] chore(deps): bump scikit-learn from 1.1.1 to 1.5.0 in /docs Bumps [scikit-learn](https://github.com/scikit-learn/scikit-learn) from 1.1.1 to 1.5.0. - [Release notes](https://github.com/scikit-learn/scikit-learn/releases) - [Commits](https://github.com/scikit-learn/scikit-learn/compare/1.1.1...1.5.0) --- updated-dependencies: - dependency-name: scikit-learn dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 266782c..a1cd7ed 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -9,6 +9,6 @@ nbsphinx pre-commit pytest rdkit-pypi==2022.9.5 -scikit-learn==1.1.1 +scikit-learn==1.5.0 seaborn==0.11.2 sphinx-autodoc-typehints From f9c82c51bb747ca249469f26d01603ee24341bc7 Mon Sep 17 00:00:00 2001 From: Jonas Schaub <44881147+JonasSchaub@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:55:01 +0200 Subject: [PATCH 2/3] chow: update dependencies correctly --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f6a565c..001aabf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ matplotlib==3.5.1 matplotlib_venn==0.11.6 pre-commit rdkit-pypi==2022.9.5 -scikit-learn==1.1.1 +scikit-learn==1.5.0 seaborn==0.11.2 diff --git a/setup.py b/setup.py index 5154b16..5eb91be 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ "fpdf2==2.6.0", "rdkit-pypi==2022.9.5", "pytest", - "scikit-learn==1.1.1", + "scikit-learn==1.5.0", "chemplot @ git+https://github.com/Kohulan/ChemPlot.git@main#egg=chemplot", "bokeh==2.4.3", ], From 28c24169c5cde3865d7b73b9777c9083d6a714ce Mon Sep 17 00:00:00 2001 From: Jonas Schaub <44881147+JonasSchaub@users.noreply.github.com> Date: Wed, 18 Sep 2024 17:01:33 +0200 Subject: [PATCH 3/3] fix: remove testing of old Python versions --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 229f755..3534f1c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38,py39,py310,lint +envlist = py310,lint requires = tox-conda [testenv] @@ -7,7 +7,7 @@ setenv = CONDA_DLL_SEARCH_MODIFICATION_ENABLE = 1 whitelist_externals = python -[testenv:py{38,39,310}] +[testenv:py{310}] conda_deps = pytest rdkit