Skip to content

Commit ce9e7e4

Browse files
authored
[chore] v0.1.6 (#377)
* v0.1.6
1 parent c963a72 commit ce9e7e4

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,17 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, macos-latest]
16+
os: [ubuntu-20.04, macOS-10.15]
1717

1818
steps:
1919
- uses: actions/checkout@v2
2020

2121
- name: Install Python
2222
uses: actions/setup-python@v2
23-
with:
24-
python-version: '3.7'
2523

26-
- name: Install cibuildwheel
27-
run: |
28-
python -m pip install cibuildwheel
29-
- name: Build wheels for CPython
30-
run: |
31-
python -m cibuildwheel --output-dir dist
32-
env:
33-
CIBW_BUILD: "cp37-*64 cp38-*64 cp39-*64"
34-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
35-
CIBW_BEFORE_BUILD: pip install .
24+
- name: Build wheel
25+
run: pip install . && pip wheel -w wheelhouse .
3626

3727
- uses: actions/upload-artifact@v2
3828
with:
39-
name: wheels
40-
path: ./dist/*.whl
29+
path: ./wheelhouse/*.whl

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [next rel] - TBD
88

9+
## [0.1.6] - 2021-02-10
10+
### Added
11+
- Checkpointing model wrapper (#376)
12+
- Faster OSS, flatbuffers (#371)
13+
- Small speedup in OSS clipgradnorm (#363)
14+
15+
### Fixed
16+
- Bug in ShardedDDP with 0.1.5 depending the init (KeyError / OSS)
17+
- Much refactoring in Pipe (#357, #358, #360, #362, #370, #373)
18+
- Better pip integration / resident pytorch (#375)
919

1020
## [0.1.5] - 2021-02-03
1121
### Added

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.5"
6+
__version__ = "0.1.6"
77

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

0 commit comments

Comments
 (0)