Skip to content

Commit 4293b9f

Browse files
Release: 0.1.1
1 parent 0e5f2da commit 4293b9f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
"filelock",
8282
"flake8>=3.8.3",
8383
"huggingface-hub",
84+
"importlib_metadata",
8485
"isort>=5.5.4",
8586
"numpy",
8687
"pytest",
@@ -168,6 +169,7 @@ def run(self):
168169
extras["dev"] = extras["quality"] + extras["test"] + extras["training"]
169170

170171
install_requires = [
172+
deps["importlib_metadata"] + ";python_version<'3.8'", # importlib_metadata for Python versions that don't have it
171173
deps["filelock"],
172174
deps["huggingface-hub"],
173175
deps["numpy"],
@@ -179,7 +181,7 @@ def run(self):
179181

180182
setup(
181183
name="diffusers",
182-
version="0.1.0",
184+
version="0.1.1",
183185
description="Diffusers",
184186
long_description=open("README.md", "r", encoding="utf-8").read(),
185187
long_description_content_type="text/markdown",

src/diffusers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .utils import is_inflect_available, is_transformers_available, is_unidecode_available
55

66

7-
__version__ = "0.1.0"
7+
__version__ = "0.1.1"
88

99
from .modeling_utils import ModelMixin
1010
from .models import AutoencoderKL, UNet2DConditionModel, UNet2DModel, VQModel

0 commit comments

Comments
 (0)