Merge pull request #33 from iluvcapra/py3.13-support

Py3.13 support
This commit is contained in:
Jamie Hardt
2024-10-25 12:28:58 -07:00
committed by GitHub
2 changed files with 4 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps: steps:
- uses: actions/checkout@v2.5.0 - uses: actions/checkout@v2.5.0

View File

@@ -17,10 +17,11 @@ classifiers = [
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12" "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
] ]
dependencies = [ dependencies = [
"lxml ~= 4.9.2" "lxml ~= 5.3.0"
] ]
keywords = [ keywords = [
'waveform', 'waveform',