From cbfae6446a763d869625ba17d4f89ca06ee43097 Mon Sep 17 00:00:00 2001 From: yaront Date: Fri, 13 Dec 2024 10:36:55 -0500 Subject: [PATCH 1/5] Updating python versions in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a5d872b..5bf4c77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ { name = "sean-landry", email = "sean.landry@cellsignal.com" }, ] description = "The Kinase Library Project: a Global Atlas of the Human Protein Kinome" -requires-python = ">=3.10, <3.12" +requires-python = ">=3.10" keywords = [ "kinase", "phosphorylation", From ff09b36d8979ef6125a59d7cb3cd824d215333bd Mon Sep 17 00:00:00 2001 From: Harin Date: Fri, 13 Dec 2024 10:40:21 -0500 Subject: [PATCH 2/5] added python 3.13 and 3.13 to github test workflow matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e22d7bb..3828897 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 with: From a879cdcded139a48f34f60842510b4e771d00c73 Mon Sep 17 00:00:00 2001 From: Harin Date: Fri, 13 Dec 2024 10:53:45 -0500 Subject: [PATCH 3/5] updating to scikit_learn~=1.6.0 --- src/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/requirements.txt b/src/requirements.txt index b46a438..2793c81 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -7,7 +7,7 @@ natsort~=8.3.1 numpy~=1.26.4 pandas~=2.2.3 pyarrow~=18.0.0 -scikit_learn~=1.3.0 +scikit_learn~=1.6.0 scipy~=1.14.1 seaborn~=0.13.2 statsmodels~=0.14.2 From 141fd7761b692dc5a4113c317e5a148a86cc7b53 Mon Sep 17 00:00:00 2001 From: yaront Date: Fri, 13 Dec 2024 11:04:22 -0500 Subject: [PATCH 4/5] Bumping version --- src/kinase_library/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kinase_library/__init__.py b/src/kinase_library/__init__.py index 78ee5e8..8edd040 100644 --- a/src/kinase_library/__init__.py +++ b/src/kinase_library/__init__.py @@ -23,7 +23,7 @@ #%% -__version__ = "1.0.2" +__version__ = "1.0.3" #%% Loading scored phosphoproteome one time per session From 2b4721aa6855ce79e3a854f27f607a548207d4c6 Mon Sep 17 00:00:00 2001 From: yaront Date: Fri, 13 Dec 2024 11:08:45 -0500 Subject: [PATCH 5/5] Updating toml file --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5bf4c77..ac0d0b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ { name = "sean-landry", email = "sean.landry@cellsignal.com" }, ] description = "The Kinase Library Project: a Global Atlas of the Human Protein Kinome" -requires-python = ">=3.10" +requires-python = ">=3.10, <=3.13" keywords = [ "kinase", "phosphorylation",