Skip to content

Commit d0f7360

Browse files
authored
chore: relax python constraint and release (#169)
1 parent efded8f commit d0f7360

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.9.7] - 2024-10-18
9+
- chore: update tiktoken to support python 3.13
10+
811
## [0.9.6] - 2024-10-18
912
- fix: update summarizer_exchange model to use default model from input exchange (#139)
1013
- feat: Add synopisis approach for the core goose loop (#166)

packages/exchange/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ai-exchange"
3-
version = "0.9.6"
3+
version = "0.9.7"
44
description = "a uniform python SDK for message generation with LLMs"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -10,7 +10,7 @@ dependencies = [
1010
"griffe>=1.1.1",
1111
"attrs>=24.2.0",
1212
"jinja2>=3.1.4",
13-
"tiktoken>=0.7.0",
13+
"tiktoken>=0.8.0",
1414
"httpx>=0.27.0",
1515
"tenacity>=9.0.0",
1616
"python-dotenv>=1.0.1",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "goose-ai"
33
description = "a programming agent that runs on your machine"
4-
version = "0.9.6"
4+
version = "0.9.7"
55
readme = "README.md"
6-
requires-python = ">=3.10, <=3.12"
6+
requires-python = ">=3.10"
77
dependencies = [
88
"ai-exchange",
99
"attrs>=23.2.0",

0 commit comments

Comments
 (0)