mirror of
https://github.com/p2p-ld/numpydantic.git
synced 2025-01-09 21:44:27 +00:00
bump minimum pydantic version
This commit is contained in:
parent
66ab444ec2
commit
63947e9db2
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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'"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue