From b3d14af9e9ea8ddee9210024eb9322c2526d7d2c Mon Sep 17 00:00:00 2001 From: Logan Wang Date: Thu, 11 Jul 2024 13:19:43 -0400 Subject: [PATCH 1/2] Moved pyluwen to optioinal dependencies --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index da6f395..40339ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,13 +33,13 @@ dependencies = [ 'requests==2.32.0', 'jsons==1.6.3', 'tqdm==4.66.3', - "pyluwen @ git+https://github.com/tenstorrent/luwen.git@v0.3.8#subdirectory=crates/pyluwen", 'pydantic>=1.2', ] optional-dependencies.dev = [ 'black==23.11.0', 'pre-commit==3.5.0', + "pyluwen @ git+https://github.com/tenstorrent/luwen.git@v0.3.11#subdirectory=crates/pyluwen", ] [project.urls] From b7bb60d8767d575f031957b394f750a8518968e3 Mon Sep 17 00:00:00 2001 From: Logan Wang Date: Thu, 11 Jul 2024 13:29:20 -0400 Subject: [PATCH 2/2] Bump tt-tools-common version to v1.4.5 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc738a6..169ad73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.4.5 - 11/07/2024 + +### Added +- Bump pyluwen library version (v0.3.8 -> v0.3.11) +- Moved pyluwen v0.3.11 to optional dependencies in pyproject.toml + ## 1.4.4 - 21/06/2024 ### Added diff --git a/pyproject.toml b/pyproject.toml index 40339ee..a9a3df4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tt-tools-common" -version = "1.4.4" +version = "1.4.5" description = "Common library for Tenstorrent tooling" readme = "README.md" requires-python = ">=3.7"