From e190be6b3432137209ba95f528667a417722f462 Mon Sep 17 00:00:00 2001 From: yafen Date: Sun, 4 Sep 2022 22:56:21 +0200 Subject: [PATCH] chore(release): update version info --- CHANGELOG.md | 14 ++++++++++++++ README.md | 1 + bagua/version.py | 2 +- pyproject.toml | 5 ----- setup.py | 3 +-- 5 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0e8065dd..cb2f91d70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## [0.9.1] - 2022-09-11 + +### Bug Fixes + +#### Python + +- Revert "fix: to_bagua_tensor compatibility with torch 1.6.0 (#355)" + +### Features + +#### Python, core + +- improve NCCL lib version check (#525) + ## [0.9.0] - 2022-01-13 ### Bug Fixes diff --git a/README.md b/README.md index eca21284e..b3aba561f 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ Wheels (precompiled binary packages) are available for Linux (x86_64). Package n | >= v11.1 | `pip install bagua-cuda111` | | >= v11.3 | `pip install bagua-cuda113` | | >= v11.5 | `pip install bagua-cuda115` | +| >= v11.6 | `pip install bagua-cuda116` | Add `--pre` to `pip install` commands to install pre-release (development) versions. See [Bagua tutorials](https://tutorials.baguasys.com/getting-started/) for quick start guide and more installation options. diff --git a/bagua/version.py b/bagua/version.py index eb1b23244..d69d16e98 100644 --- a/bagua/version.py +++ b/bagua/version.py @@ -1 +1 @@ -__version__ = "dev" +__version__ = "0.9.1" diff --git a/pyproject.toml b/pyproject.toml index 8f2089b32..abe9fdb2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,3 @@ [build-system] requires = ["setuptools >= 43.0.0", "wheel", "setuptools-rust", "colorama", "tqdm", "setuptools_scm[toml]>=6.0"] build-backend = 'setuptools.build_meta' - -[tool.setuptools_scm] -local_scheme = "no-local-version" -write_to = "bagua/version.py" -write_to_template = "__version__ = \"{version}\"" diff --git a/setup.py b/setup.py index 2a9ea30f2..e6b199029 100644 --- a/setup.py +++ b/setup.py @@ -81,8 +81,7 @@ def check_args(args: List[str]) -> bool: setup( name="bagua" + name_suffix, - use_scm_version={"local_scheme": "no-local-version"}, - setup_requires=["setuptools_scm"], + version="0.9.1", url="https://github.com/BaguaSys/bagua", python_requires=">=3.7", description="Bagua is a deep learning training acceleration framework for PyTorch. It provides a one-stop training acceleration solution, including faster distributed training compared to PyTorch DDP, faster dataloader, kernel fusion, and more.",