Skip to content

Commit

Permalink
Fix tfds installation (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiltsov-max committed May 10, 2023
1 parent 22401b0 commit 9a97050
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,11 @@ def parse_requirements(filename=CORE_REQUIREMENTS_FILE):
extras_require={
"tf": ["tensorflow"],
"tfds": [
"tensorflow-datasets!=4.5.0,!=4.5.1"
], # 4.5.0 fails on Windows, https://github.com/tensorflow/datasets/issues/3709
# 4.5.0 fails on Windows, https://github.com/tensorflow/datasets/issues/3709
"tensorflow-datasets!=4.5.0,!=4.5.1",
# TFDS misses a dependency in recent python releases
"dill~=0.3",
],
"tf-gpu": ["tensorflow-gpu"],
"default": DEFAULT_REQUIREMENTS,
},
Expand Down

0 comments on commit 9a97050

Please sign in to comment.