Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
update torch requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Oct 27, 2020
2 parents 8da3508 + 5d6670c commit 98edd25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ data loaders. Those are coming soon.
You can also now set default values for foo like `foo: Lazy[Foo] = Lazy(Foo)`.
Or, if you want you want a default value but also want to allow for `None` values, you can
write it like this: `foo: Optional[Lazy[Foo]] = Lazy(Foo)`.
- Added support for PyTorch version 1.7.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
]
),
install_requires=[
"torch>=1.6.0,<1.7.0",
"torch>=1.6.0,<1.8.0",
"torchvision>=0.7.0",
"jsonnet>=0.10.0 ; sys.platform != 'win32'",
"overrides==3.1.0",
Expand Down

0 comments on commit 98edd25

Please sign in to comment.