1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

Release: 0.1.1

This commit is contained in:
Patrick von Platen
2022-07-21 04:51:37 +02:00
parent 0e5f2daee7
commit 4293b9f54f
2 changed files with 4 additions and 2 deletions

View File

@@ -81,6 +81,7 @@ _deps = [
"filelock",
"flake8>=3.8.3",
"huggingface-hub",
"importlib_metadata",
"isort>=5.5.4",
"numpy",
"pytest",
@@ -168,6 +169,7 @@ extras["test"] = [
extras["dev"] = extras["quality"] + extras["test"] + extras["training"]
install_requires = [
deps["importlib_metadata"] + ";python_version<'3.8'", # importlib_metadata for Python versions that don't have it
deps["filelock"],
deps["huggingface-hub"],
deps["numpy"],
@@ -179,7 +181,7 @@ install_requires = [
setup(
name="diffusers",
version="0.1.0",
version="0.1.1",
description="Diffusers",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",

View File

@@ -4,7 +4,7 @@
from .utils import is_inflect_available, is_transformers_available, is_unidecode_available
__version__ = "0.1.0"
__version__ = "0.1.1"
from .modeling_utils import ModelMixin
from .models import AutoencoderKL, UNet2DConditionModel, UNet2DModel, VQModel