Skip to content

Commit

Permalink
Add fsspec pin to fix failing Python 3.7 tests (#5639)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Mar 6, 2023
1 parent 245d5cf commit b1414e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@
"datashader >=0.11.1",
]

if sys.version_info < (3, 8):
extras_require["tests"] += [
"fsspec == 2023.1",
]


extras_require["examples_tests"] = extras_require["examples"] + extras_require['tests_nb']

Expand Down

0 comments on commit b1414e9

Please sign in to comment.