Browse Source

Merge pull request #210 from LykosAI/main

Release v2.5.4
pull/198/head
JT 1 year ago committed by GitHub
parent
commit
885817ba4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 2
      StabilityMatrix.Core/Models/Packages/BasePackage.cs

4
CHANGELOG.md

@ -5,6 +5,10 @@ All notable changes to Stability Matrix will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
## v2.5.4
### Fixed
- Fixed [#208](https://github.com/LykosAI/StabilityMatrix/issues/208) - error when installing xformers
## v2.5.3 ## v2.5.3
### Added ### Added
- Added French UI language option, thanks to eephyne for the translation - Added French UI language option, thanks to eephyne for the translation

2
StabilityMatrix.Core/Models/Packages/BasePackage.cs

@ -178,7 +178,7 @@ public abstract class BasePackage
await venvRunner await venvRunner
.PipInstall(PyVenvRunner.TorchPipInstallArgsCuda, onConsoleOutput) .PipInstall(PyVenvRunner.TorchPipInstallArgsCuda, onConsoleOutput)
.ConfigureAwait(false); .ConfigureAwait(false);
await venvRunner.PipInstall("xformers", onConsoleOutput).ConfigureAwait(false); await venvRunner.PipInstall("xformers==0.0.20", onConsoleOutput).ConfigureAwait(false);
} }
protected Task InstallDirectMlTorch( protected Task InstallDirectMlTorch(

Loading…
Cancel
Save