Create pyproject.toml and add python 3.12 to CI

This commit is contained in:
Kevin Phoenix 2024-05-31 13:55:45 -07:00
parent 404912f068
commit 7aca280b7d
2 changed files with 11 additions and 0 deletions

View File

@ -74,6 +74,14 @@ jobs:
build-system: 'cmake',
enable-asan: 'ON'
}
- {
name: 'ubuntu-22.04 x64 python3.12 cmake',
os: ubuntu-22.04,
arch: x64,
python-arch: x64,
python-version: '3.12',
build-system: 'cmake',
}
steps:
- uses: actions/checkout@v3

View File

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"