Skip to content

Commit

Permalink
Merge pull request #114 from edgarrmondragon/cp313
Browse files Browse the repository at this point in the history
Add support for Python 3.13
  • Loading branch information
Byron authored Oct 9, 2024
2 parents 88da5ef + b38cbc4 commit a8c894f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ on: [push, pull_request, workflow_dispatch]
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
experimental: [false]
include:
- experimental: false
- python-version: "3.7"
os: ubuntu-22.04
experimental: false
continue-on-error: ${{ matrix.experimental }}

steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
)

0 comments on commit a8c894f

Please sign in to comment.