Skip to content

Commit a8c894f

Browse files
authored
Merge pull request #114 from edgarrmondragon/cp313
Add support for Python 3.13
2 parents 88da5ef + b38cbc4 commit a8c894f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/pythonpackage.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@ on: [push, pull_request, workflow_dispatch]
88
jobs:
99
build:
1010

11-
runs-on: ubuntu-latest
11+
runs-on: ${{ matrix.os }}
1212
strategy:
13+
fail-fast: false
1314
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
os: [ubuntu-latest]
17+
experimental: [false]
1518
include:
16-
- experimental: false
19+
- python-version: "3.7"
20+
os: ubuntu-22.04
21+
experimental: false
1722
continue-on-error: ${{ matrix.experimental }}
1823

1924
steps:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"Programming Language :: Python :: 3.10",
4242
"Programming Language :: Python :: 3.11",
4343
"Programming Language :: Python :: 3.12",
44+
"Programming Language :: Python :: 3.13",
4445
"Programming Language :: Python :: 3 :: Only",
4546
]
4647
)

0 commit comments

Comments
 (0)