Skip to content

Commit

Permalink
Merge pull request #557 from yukinarit/does-not-support-numpy-2-yet
Browse files Browse the repository at this point in the history
pyserde does not support numpy 2 yet
  • Loading branch information
yukinarit committed Jun 17, 2024
2 parents 8ec44de + 675d7c2 commit b30686a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ tomli = { version = "*", markers = "extra == 'toml' or extra == 'all'", optional
tomli-w = { version = "*", markers = "extra == 'toml' or extra == 'all'", optional = true }
pyyaml = { version = "*", markers = "extra == 'yaml' or extra == 'all'", optional = true }
numpy = [
{ version = ">1.21.0", markers = "python_version ~= '3.9.0' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.22.0", markers = "python_version ~= '3.10' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.22.0", markers = "python_version ~= '3.11' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.22.0", markers = "python_version ~= '3.12' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.21.0,<2.0.0", markers = "python_version ~= '3.9.0' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.22.0,<2.0.0", markers = "python_version ~= '3.10' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.22.0,<2.0.0", markers = "python_version ~= '3.11' and (extra == 'numpy' or extra == 'all')", optional = true },
{ version = ">1.22.0,<2.0.0", markers = "python_version ~= '3.12' and (extra == 'numpy' or extra == 'all')", optional = true },
]
orjson = { version = "*", markers = "extra == 'orjson' or extra == 'all'", optional = true }
plum-dispatch = ">=2,<2.3"
Expand All @@ -49,10 +49,10 @@ tomli = { version = "*", markers = "python_version <= '3.11.0'" }
tomli-w = "*"
msgpack = "*"
numpy = [
{ version = ">1.21.0", markers = "python_version ~= '3.9.0'" },
{ version = ">1.22.0", markers = "python_version ~= '3.10'" },
{ version = ">1.22.0", markers = "python_version ~= '3.11'" },
{ version = ">1.22.0", markers = "python_version ~= '3.12'" },
{ version = ">1.21.0,<2.0.0", markers = "python_version ~= '3.9.0'" },
{ version = ">1.22.0,<2.0.0", markers = "python_version ~= '3.10'" },
{ version = ">1.22.0,<2.0.0", markers = "python_version ~= '3.11'" },
{ version = ">1.22.0,<2.0.0", markers = "python_version ~= '3.12'" },
]
mypy = "==1.10.0"
pytest = "*"
Expand Down

0 comments on commit b30686a

Please sign in to comment.