Skip to content

Commit

Permalink
chore(release): update version info
Browse files Browse the repository at this point in the history
  • Loading branch information
woqidaideshi committed Sep 11, 2022
1 parent a39a57e commit e190be6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion bagua/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "dev"
__version__ = "0.9.1"
5 changes: 0 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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}\""
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down

0 comments on commit e190be6

Please sign in to comment.