Unverified Commit ce9e7e48 authored by Benjamin Lefaudeux's avatar Benjamin Lefaudeux Committed by GitHub
Browse files

[chore] v0.1.6 (#377)

* v0.1.6
parent c963a72a
...@@ -13,28 +13,17 @@ jobs: ...@@ -13,28 +13,17 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-20.04, macOS-10.15]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install Python - name: Install Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install cibuildwheel - name: Build wheel
run: | run: pip install . && pip wheel -w wheelhouse .
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 .
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
with: with:
name: wheels path: ./wheelhouse/*.whl
path: ./dist/*.whl
...@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [next rel] - TBD ## [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 ## [0.1.5] - 2021-02-03
### Added ### Added
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# This source code is licensed under the BSD license found in the # This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree. # LICENSE file in the root directory of this source tree.
__version__ = "0.1.5" __version__ = "0.1.6"
################################################################################ ################################################################################
# Import most common subpackages # Import most common subpackages
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment