Skip to content

Commit

Permalink
Add Python 3.13 support (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeMyst authored Jun 19, 2024
1 parent 929a237 commit ddbc7dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,18 @@ jobs:

strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] # '3.13-dev' wait for new version of pypa/installer > 0.7.0
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13-dev' ]

steps:
- uses: actions/checkout@v4.1.7

- name: Install pipx
run: apt update && apt install -y pipx && pipx ensurepath

- name: Install dependencies for Python 3.13-dev
if: matrix.python-version == '3.13-dev'
run: apt install -y build-essential libffi-dev

- name: Update path
run: echo "$HOME/.local/bin" >> $GITHUB_PATH

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
Expand Down

0 comments on commit ddbc7dc

Please sign in to comment.