-
Notifications
You must be signed in to change notification settings - Fork 25
chore: reduce python version matrix in CI configuration #84
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
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 |
|---|---|---|
|
|
@@ -40,7 +40,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3"] | ||
| python-version: ["3.9", "3"] | ||
|
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check for package metadata files
echo "=== Checking for package metadata files ==="
ls -la pyproject.toml setup.py setup.cfg 2>/dev/null | grep -E "pyproject.toml|setup.py|setup.cfg" || echo "No standard metadata found in root"
# Check pyproject.toml for python version requirements
if [ -f "pyproject.toml" ]; then
echo ""
echo "=== pyproject.toml (full content) ==="
cat pyproject.toml
fi
# Check setup.py if it exists
if [ -f "setup.py" ]; then
echo ""
echo "=== setup.py ==="
head -100 setup.py
fi
# Check setup.cfg if it exists
if [ -f "setup.cfg" ]; then
echo ""
echo "=== setup.cfg ==="
cat setup.cfg
fiRepository: fishaudio/fish-audio-python Length of output: 2967 Reduce untested Python version gap or update package compatibility declarations. The package declares support for Python 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14 in Either expand the test matrix to include at least 3.10 and 3.12 (or all intermediate versions), or update the classifiers in 🤖 Prompt for AI Agents |
||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - name: Install uv | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.