Skip to content

Commit 5ad25c3

Browse files
authored
Python versions update (#25)
* Updating python versions in pyproject.toml * added python 3.13 and 3.13 to github test workflow matrix * updating to scikit_learn~=1.6.0 * Bumping version
1 parent f056ba3 commit 5ad25c3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.10", "3.11"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/checkout@v3
2020
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
{ name = "sean-landry", email = "sean.landry@cellsignal.com" },
1212
]
1313
description = "The Kinase Library Project: a Global Atlas of the Human Protein Kinome"
14-
requires-python = ">=3.10, <3.12"
14+
requires-python = ">=3.10, <=3.13"
1515
keywords = [
1616
"kinase",
1717
"phosphorylation",

src/kinase_library/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#%%
2525

26-
__version__ = "1.0.2"
26+
__version__ = "1.0.3"
2727

2828
#%% Loading scored phosphoproteome one time per session
2929

src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ natsort~=8.3.1
77
numpy~=1.26.4
88
pandas~=2.2.3
99
pyarrow~=18.0.0
10-
scikit_learn~=1.3.0
10+
scikit_learn~=1.6.0
1111
scipy~=1.14.1
1212
seaborn~=0.13.2
1313
statsmodels~=0.14.2

0 commit comments

Comments
 (0)