Skip to content

Commit

Permalink
[chore] v0.1.6 (#377)
Browse files Browse the repository at this point in the history
* v0.1.6
  • Loading branch information
blefaudeux authored Feb 11, 2021
1 parent c963a72 commit ce9e7e4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-20.04, macOS-10.15]

steps:
- uses: actions/checkout@v2

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
- name: Build wheels for CPython
run: |
python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: "cp37-*64 cp38-*64 cp39-*64"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
CIBW_BEFORE_BUILD: pip install .
- name: Build wheel
run: pip install . && pip wheel -w wheelhouse .

- uses: actions/upload-artifact@v2
with:
name: wheels
path: ./dist/*.whl
path: ./wheelhouse/*.whl
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [next rel] - TBD

## [0.1.6] - 2021-02-10
### Added
- Checkpointing model wrapper (#376)
- Faster OSS, flatbuffers (#371)
- Small speedup in OSS clipgradnorm (#363)

### Fixed
- Bug in ShardedDDP with 0.1.5 depending the init (KeyError / OSS)
- Much refactoring in Pipe (#357, #358, #360, #362, #370, #373)
- Better pip integration / resident pytorch (#375)

## [0.1.5] - 2021-02-03
### Added
Expand Down
2 changes: 1 addition & 1 deletion fairscale/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.

__version__ = "0.1.5"
__version__ = "0.1.6"

################################################################################
# Import most common subpackages
Expand Down

0 comments on commit ce9e7e4

Please sign in to comment.