From de36d5b63623bf9c8c057d95defb9041de6eb797 Mon Sep 17 00:00:00 2001 From: Florian Fervers Date: Sun, 28 Jan 2024 17:17:21 +0100 Subject: [PATCH] Update changelog, bump version to 0.1.3 --- CHANGELOG.md | 18 ++++++++++++++++++ setup.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c38b23d..4a9619d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog + + +## [0.1.3] + +### Added + +- Add option to install einx via `pip install einx[torch]` or `pip install einx[keras]` to enforce version requirements on PyTorch or Keras. + +### Changed + +- Fail gracefully and report error when run with incompatible version of PyTorch and Keras. + +### Fixed + +- Fix compatibility with 2.0 <= PyTorch < 2.1. + + + ## [0.1.2] ### Added diff --git a/setup.py b/setup.py index 20d9369..2999ad7 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="einx", - version="0.1.2", + version="0.1.3", python_requires=">=3.8", description="Tensor Operations Expressed in Einstein-Inspired Notation", long_description=long_description,