-
Notifications
You must be signed in to change notification settings - Fork 19
Support python 3.13 #95
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
base: main
Are you sure you want to change the base?
Changes from 10 commits
233c590
0e189f1
0e76422
7232408
71cf474
4345693
c9fe996
4d34f9c
0090e51
7f2db37
3b607cd
6bfb3c3
51abde0
b8d95b8
14be8a8
a040bcf
0c8cd37
927f4ad
0339566
6b898ac
335fca1
8863690
fc1b504
948d826
ada0ce0
2067db2
5010aa3
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 |
|---|---|---|
| @@ -1 +1 @@ | ||
| python-3.12 | ||
| python-3.13 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ name = "pyopenms_viz" | |
| module = "pyopenms_viz" | ||
| dist-name = "pyopenms_viz" | ||
| author = "OpenMS Team" | ||
| version = "1.0.0" | ||
| version = "1.0.1" | ||
| author-email = "[email protected]" | ||
| home-page = "https://github.com/OpenMS/pyopenms_viz/" | ||
| description = "A package for visualizing mass spectrometry data using pandas dataframes" | ||
|
|
@@ -19,10 +19,12 @@ classifiers = [ | |
| "Operating System :: OS Independent", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "Topic :: Scientific/Engineering :: Bio-Informatics", | ||
| "Topic :: Scientific/Engineering :: Chemistry", | ||
| ] | ||
| requires-python = ">=3.10, <=3.13" | ||
| requires-python = ">=3.10, <=3.14" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainRe-evaluate requires-python upper bound vs CI coverage You allow installation on 3.14 but do not test it in CI. Either:
-requires-python = ">=3.10, <=3.14"
+# Option A: tighten until CI covers 3.14
+requires-python = ">=3.10, <3.14"Alternatively, add Python 3.14 to classifiers and CI once available. 🏁 Script executed: #!/bin/bash
# Search for python-version entries in GitHub Actions workflows to verify CI coverage
grep -R "python-version" -n .github/workflowsLength of output: 554 Re-evaluate requires-python upper bound vs CI coverage Our GitHub Actions only run on Python 3.12 and 3.13, but • Tighten the upper bound until we add CI for 3.14: - requires-python = ">=3.10, <=3.14"
+ requires-python = ">=3.10, <3.14"• Or add Python 3.14 (or 3.14-dev) to your CI matrices in: Once CI passes on 3.14, don’t forget to update your PyPI classifiers to include it. |
||
| dependencies = ["pandas>=0.17"] | ||
|
|
||
| [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.
Would keep testing at 3.12 for now, see above