Update pybind to 3.10 to allow Python 3.11 support

pull/35/head
Andrew Cassidy 1 year ago
parent 9cb60f0ce2
commit 0dccd1cd07

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file
## Unreleased
### Changed
- Updated Pybind11 to version 3.10, adding Python 3.11 support
## 0.1.3 - 2022-04-13
### Fixed

@ -4,7 +4,7 @@ requires = [
"setuptools_scm>=6.2",
"wheel",
"cmake>=3.18",
"pybind11~=2.6.1",
"pybind11~=2.10",
"ninja; sys_platform != 'win32'",
]
build-backend = "setuptools.build_meta"
@ -81,5 +81,5 @@ manylinux-aarch64-image = "manylinux2014"
[tool.black]
line-length = 120 # 80-column is stupid
target-version = ['py37', 'py38', 'py39', 'py310']
target-version = ['py37', 'py38', 'py39', 'py310', 'py310']
skip-string-normalization = true
Loading…
Cancel
Save