bump minimum pydantic version

This commit is contained in:
sneakers-the-rat 2024-12-04 01:22:49 -08:00
parent 66ab444ec2
commit 63947e9db2
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D
2 changed files with 7 additions and 2 deletions

View file

@ -4,6 +4,11 @@
### 1.6.* ### 1.6.*
#### 1.6.5 - 24-12-04 - Bump Pydantic Minimum
**Bugfix**
- [#36](https://github.com/p2p-ld/numpydantic/issues/36), [#37](https://github.com/p2p-ld/numpydantic/pull/37) - [@gerhardadler](https://github.com/gerhardadler) identifies that serialization context was only introduced in pydantic 2.7, minimum pydantic version has been updated accordingly
#### 1.6.4 - 24-10-11 - Combinatoric Testing #### 1.6.4 - 24-10-11 - Combinatoric Testing
PR: https://github.com/p2p-ld/numpydantic/pull/31 PR: https://github.com/p2p-ld/numpydantic/pull/31

View file

@ -1,12 +1,12 @@
[project] [project]
name = "numpydantic" name = "numpydantic"
version = "1.6.4" version = "1.6.5"
description = "Type and shape validation and serialization for arbitrary array types in pydantic models" description = "Type and shape validation and serialization for arbitrary array types in pydantic models"
authors = [ authors = [
{name = "sneakers-the-rat", email = "sneakers-the-rat@protonmail.com"}, {name = "sneakers-the-rat", email = "sneakers-the-rat@protonmail.com"},
] ]
dependencies = [ dependencies = [
"pydantic>=2.3.0", "pydantic>=2.7.0",
"numpy>=1.24.0", "numpy>=1.24.0",
"typing-extensions>=4.11.0;python_version<'3.11'" "typing-extensions>=4.11.0;python_version<'3.11'"
] ]