Skip to content

Commit 5ea376e

Browse files
authored
[minor] bump v number for current main (#83)
1 parent bd9b45e commit 5ea376e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
author = "Facebook AI Research"
3636

3737
# The full version, including alpha/beta/rc tags
38-
release = "0.0.3"
38+
release = "0.0.4"
3939

4040

4141
# -- General configuration ---------------------------------------------------

xformers/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import logging
77

88
# Please update the doc version in docs/source/conf.py as well.
9-
__version__ = "0.0.3"
9+
__version__ = "0.0.4"
1010

1111
_is_sparse_available = True
1212

@@ -58,8 +58,8 @@ def _register_extensions():
5858
_register_extensions()
5959
except (ImportError, OSError) as e:
6060
print(e)
61-
logging.error(
62-
f"ERROR: {e}\nNeed to compile C++ extensions to get sparse attention suport."
63-
+ "Please run python setup.py build develop"
61+
logging.warning(
62+
f"WARNING: {e}\nNeed to compile C++ extensions to get sparse attention suport."
63+
+ " Please run python setup.py build develop"
6464
)
6565
_is_sparse_available = False

0 commit comments

Comments
 (0)