Skip to content

Commit e313fa8

Browse files
authored
Merge pull request #247 from yukinarit/fix-numpy
Fix numpy
2 parents 90c0871 + c2daa02 commit e313fa8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## `0.8.3` (2022-06-28)
2+
3+
* fix: Use numpy<1.23.0 for python 3.7 and 3.8 ([3045521](https://github.com/yukinarit/pyserde/commit/3045521))
4+
15
## `0.8.2` (2022-06-18)
26

37
* chore: Replace stringcase with casfey ([1f8a17d](https://github.com/yukinarit/pyserde/commit/1f8a17d)), closes [#240](https://github.com/yukinarit/pyserde/issues/240)

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyserde"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
description = "Yet another serialization library on top of dataclasses"
55
authors = ["yukinarit <[email protected]>"]
66
license = "MIT"
@@ -32,8 +32,8 @@ msgpack = { version = "*", markers = "extra == 'msgpack' or extra == 'all'", opt
3232
toml = { version = "*", markers = "extra == 'toml' or extra == 'all'", optional = true }
3333
pyyaml = { version = "*", markers = "extra == 'yaml' or extra == 'all'", optional = true }
3434
numpy = [
35-
{ version = "~1.21.0", markers = "python_version ~= '3.7.0' and (extra == 'numpy' or extra == 'all')", optional = true },
36-
{ version = ">1.21.0", markers = "python_version ~= '3.8.0' and (extra == 'numpy' or extra == 'all')", optional = true },
35+
{ version = "~1.21.0,<1.23.0", markers = "python_version ~= '3.7.0' and (extra == 'numpy' or extra == 'all')", optional = true },
36+
{ version = ">1.21.0,<1.23.0", markers = "python_version ~= '3.8.0' and (extra == 'numpy' or extra == 'all')", optional = true },
3737
{ version = ">1.21.0", markers = "python_version ~= '3.9.0' and (extra == 'numpy' or extra == 'all')", optional = true },
3838
{ version = ">1.22.0", markers = "python_version ~= '3.10' and (extra == 'numpy' or extra == 'all')", optional = true },
3939
]

0 commit comments

Comments
 (0)