-
Notifications
You must be signed in to change notification settings - Fork 20
tests: added py313 #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: added py313 #105
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ name = "popV" | |
| version = "0.6.0" | ||
| description = "Consensus prediction of cell type labels with popV" | ||
| readme = "README.md" | ||
| requires-python = ">=3.10" | ||
| requires-python = ">=3.11" | ||
|
||
| license = {file = "LICENSE"} | ||
| authors = [ | ||
| {name = "Can Ergen"}, | ||
|
|
@@ -28,9 +28,9 @@ classifiers = [ | |
| "Development Status :: 4 - Beta", | ||
| "Intended Audience :: Science/Research", | ||
| "Natural Language :: English", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "Operating System :: MacOS :: MacOS X", | ||
| "Operating System :: Microsoft :: Windows", | ||
| "Operating System :: POSIX :: Linux", | ||
|
|
@@ -54,6 +54,10 @@ dependencies = [ | |
| "faiss-cpu", | ||
| "leidenalg", | ||
| "cellxgene_census", | ||
| "torch>=2.4", | ||
| "transformers>=4.35.0", | ||
| "sentence-transformers>=2.3.1", | ||
| "tokenizers>=0.14.0", | ||
|
Comment on lines
+57
to
+60
|
||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Raising the minimum supported Python to >=3.11 makes the existing runtime version warning in popv/init.py (it currently checks
sys.version_info[:2] != (3, 10)while mentioning Python 3.11) trigger on every supported Python version. Please update/remove that warning (e.g., check for != (3, 11) or format the f-string correctly) so users on supported versions don’t always see a misleading warning.