Skip to content

Commit

Permalink
[BUG] Update requirements for typing_extensions (#1593)
Browse files Browse the repository at this point in the history
We currently use `from typing import ParamSpec` and fallback onto `from
typing_extensions import ParamSpec` when on a version of Python < 3.10

We need to upgrade our requirements to reflect this!
  • Loading branch information
jaychia authored Nov 10, 2023
1 parent a0aa639 commit 2f6d215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies = [
"pyarrow >= 6.0.1",
"fsspec[http]",
"psutil",
"typing-extensions >= 4.0.0; python_version < '3.8'",
"typing-extensions >= 4.0.0; python_version < '3.10'",
"pickle5 >= 0.0.12; python_version < '3.8'"
]
description = "A Distributed DataFrame library for large scale complex data processing."
Expand Down

0 comments on commit 2f6d215

Please sign in to comment.