We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfb030f + b5800d3 commit e8a42e4Copy full SHA for e8a42e4
bitsandbytes/__init__.py
@@ -24,4 +24,6 @@
24
"optim.optimizer.MockArgs": False,
25
}
26
27
+__version__ = "0.41.3.post1"
28
+
29
PACKAGE_GITHUB_URL = "https://github.com/TimDettmers/bitsandbytes"
setup.py
@@ -6,6 +6,9 @@
6
import os
7
8
from setuptools import find_packages, setup
9
+import bitsandbytes as bnb
10
11
+VERSION = bnb.__version__
12
13
libs = list(glob.glob("./bitsandbytes/libbitsandbytes*.so"))
14
libs = [os.path.basename(p) for p in libs]
@@ -18,7 +21,7 @@ def read(fname):
18
21
19
22
setup(
20
23
name=f"bitsandbytes",
- version=f"0.41.3.post1",
+ version=VERSION,
author="Tim Dettmers",
author_email="[email protected]",
description="k-bit optimizers and matrix multiplication routines.",
0 commit comments