Skip to content

Commit 291da1e

Browse files
authored
[fix] add build dependency on torch (#21)
1 parent 5a2b572 commit 291da1e

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66

77
.mypy_cache/
88
*.egg-info/
9+
10+
build/
11+
dist/

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.0.0] - 2020-07-31
7+
## [0.0.1] - 2020-07-31
88

99
- Initial release.

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include requirements.txt

fairscale/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This source code is licensed under the BSD license found in the
44
# LICENSE file in the root directory of this source tree.
55

6-
__version__ = "0.0.0"
6+
__version__ = "0.0.1"
77

88
################################################################################
99
# Import most common subpackages

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools >= 40.6.2",
4+
"torch >= 1.4.0",
45
"wheel >= 0.30.0"
56
]
67
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)