From a7389fbaecc40d381f4c3737117b97cf4a5d0f07 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Mon, 6 May 2024 19:23:34 +0200 Subject: [PATCH] Bump version to 0.3.2 (#250) --- libs/spandrel/spandrel/__init__.py | 2 +- libs/spandrel_extra_arches/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/spandrel/spandrel/__init__.py b/libs/spandrel/spandrel/__init__.py index d0ebb036..8397d99d 100644 --- a/libs/spandrel/spandrel/__init__.py +++ b/libs/spandrel/spandrel/__init__.py @@ -2,7 +2,7 @@ Spandrel is a library for loading and running pre-trained PyTorch models. It automatically detects the model architecture and hyper parameters from model files, and provides a unified interface for running models. """ -__version__ = "0.3.1" +__version__ = "0.3.2" from .__helpers.canonicalize import canonicalize_state_dict from .__helpers.loader import ModelLoader diff --git a/libs/spandrel_extra_arches/pyproject.toml b/libs/spandrel_extra_arches/pyproject.toml index e8e4317d..dbd8532f 100644 --- a/libs/spandrel_extra_arches/pyproject.toml +++ b/libs/spandrel_extra_arches/pyproject.toml @@ -32,7 +32,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "spandrel>=0.3.0", + "spandrel>=0.3.2", "torch", "torchvision", "numpy",