Skip to content

Commit

Permalink
Added specific python version support classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
392781 committed Oct 7, 2024
1 parent 11d84c4 commit 52d79fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
### Dependencies

scikit-ntk requires:
* Python (>=3.7)
* Python (>=3.8)
* scikit-learn (>=1.0.1)


Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics"
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[tool.poetry.urls]
Expand All @@ -26,7 +33,7 @@ classifiers = [
[tool.poetry.dependencies]
python = ">=3.8, <3.14"
scikit-learn = [
{version = "^1.0.0", python = ">=3.7,<3.10"},
{version = "^1.0.0", python = ">=3.8,<3.10"},
{version = "^1.1.3", python = ">=3.10"}
]

Expand Down

0 comments on commit 52d79fd

Please sign in to comment.