Skip to content
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

Test with Python 3.13 #61

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ jobs:
matrix:
include:
- operating-system: macos-latest
python-version: '3.12'
python-version: '3.13'

- operating-system: ubuntu-latest
python-version: '3.12'
python-version: '3.13'

- operating-system: windows-latest
python-version: '3.13'

Comment on lines +17 to +24
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Update Python version support metadata before adding 3.13 tests

The package metadata in pyproject.toml needs to be updated before adding Python 3.13 tests:

  • Add "Programming Language :: Python :: 3.13" to the classifiers
  • Verify that conda==24.11.2 and executorlib==0.0.7 support Python 3.13
  • Consider marking Python 3.13 jobs as experimental using continue-on-error: true
🔗 Analysis chain

Verify Python 3.13 compatibility and update documentation.

Adding Python 3.13 testing is forward-thinking, but since Python 3.13 is still in development:

  1. Ensure all dependencies support Python 3.13
  2. Document any known compatibility issues or limitations
  3. Consider marking these jobs as experimental/allowed to fail

Let's check the package compatibility:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if Python package dependencies specify Python 3.13 support
for file in setup.py setup.cfg pyproject.toml; do
  if [ -f "$file" ]; then
    echo "=== $file ==="
    cat "$file"
  fi
done

Length of output: 1818

- operating-system: ubuntu-latest
python-version: '3.12'

- operating-system: ubuntu-latest
Expand Down
Loading