Skip to content

Commit 867cc2d

Browse files
authored
[fix] make sure pip package includes header files (#221)
Fixes #190
1 parent 8b5b954 commit 867cc2d

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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

77

8+
## [0.1.1] - 2020-12-01
9+
### Fixed
10+
- make sure pip package includes header files (#221)
11+
812
## [0.1.0] - 2020-12-01
913
### Added
1014
- ShardedDataParallel with autoreduce (#157)

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE
22
include requirements.txt
3+
recursive-include fairscale *.h *.cuh

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.1.0"
6+
__version__ = "0.1.1"
77

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

0 commit comments

Comments
 (0)